diff --git a/Gemfile b/Gemfile index 7ba5edbd..8b97dd4f 100644 --- a/Gemfile +++ b/Gemfile @@ -1,5 +1,6 @@ source "https://rubygems.org" +gem 'json-ld', github: 'ruby-rdf/json-ld', branch: 'develop' gem 'nokogiri' gem 'linkeddata' gem 'colorize' diff --git a/Gemfile.lock b/Gemfile.lock index eb1d33cb..fc77ae6b 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,3 +1,12 @@ +GIT + remote: git://github.com/ruby-rdf/json-ld.git + revision: 53ed283d8c66924c58262962223326177c7053b1 + branch: develop + specs: + json-ld (3.0.2) + multi_json (~> 1.12) + rdf (>= 2.2.8, < 4.0) + GEM remote: https://rubygems.org/ specs: @@ -22,9 +31,6 @@ GEM htmlentities (4.3.4) i18n (1.1.0) concurrent-ruby (~> 1.0) - json-ld (3.0.1) - multi_json (~> 1.12) - rdf (>= 2.2.8, < 4.0) json-ld-preloaded (3.0.1) json-ld (~> 3.0) multi_json (~> 1.12) @@ -71,7 +77,7 @@ GEM nokogiri public_suffix (3.0.3) rake (12.3.1) - rdf (3.0.3) + rdf (3.0.4) hamster (~> 3.0) link_header (~> 0.0, >= 0.0.8) rdf-aggregate-repo (2.2.1) @@ -111,13 +117,13 @@ GEM rdf (>= 2.2, < 4.0) rdf-vocab (>= 2.2, < 4.0) rdf-xsd (>= 2.2, < 4.0) - rdf-trig (3.0.0) + rdf-trig (3.0.1) ebnf (~> 1.1) rdf (~> 3.0) - rdf-turtle (~> 3.0, >= 3.0.2) + rdf-turtle (~> 3.0, >= 3.0.3) rdf-trix (2.2.1) rdf (>= 2.2, < 4.0) - rdf-turtle (3.0.2) + rdf-turtle (3.0.3) ebnf (~> 1.1) rdf (~> 3.0) rdf-vocab (3.0.3) @@ -153,6 +159,7 @@ PLATFORMS DEPENDENCIES colorize + json-ld! linkeddata nokogiri rake diff --git a/examples/example-032-Setting-container-set-on-type.jsonld b/examples/example-032-Setting-container-set-on-type.jsonld new file mode 100644 index 00000000..339488c4 --- /dev/null +++ b/examples/example-032-Setting-container-set-on-type.jsonld @@ -0,0 +1,7 @@ +{ + "@context": { + "@version": 1.1, + "@type": {"@container": "@set"} + }, + "@type": ["http:/example.org/type"] +} \ No newline at end of file diff --git a/examples/example-032-IRI-expansion-within-a-context.jsonld b/examples/example-033-IRI-expansion-within-a-context.jsonld similarity index 100% rename from examples/example-032-IRI-expansion-within-a-context.jsonld rename to examples/example-033-IRI-expansion-within-a-context.jsonld diff --git a/examples/example-033-Using-a-term-to-define-the-IRI-of-another-term-within-a-context.jsonld b/examples/example-034-Using-a-term-to-define-the-IRI-of-another-term-within-a-context.jsonld similarity index 100% rename from examples/example-033-Using-a-term-to-define-the-IRI-of-another-term-within-a-context.jsonld rename to examples/example-034-Using-a-term-to-define-the-IRI-of-another-term-within-a-context.jsonld diff --git a/examples/example-034-Using-a-compact-IRI-as-a-term.jsonld b/examples/example-035-Using-a-compact-IRI-as-a-term.jsonld similarity index 100% rename from examples/example-034-Using-a-compact-IRI-as-a-term.jsonld rename to examples/example-035-Using-a-compact-IRI-as-a-term.jsonld diff --git a/examples/example-035-Associating-context-definitions-with-absolute-IRIs.jsonld b/examples/example-036-Associating-context-definitions-with-absolute-IRIs.jsonld similarity index 100% rename from examples/example-035-Associating-context-definitions-with-absolute-IRIs.jsonld rename to examples/example-036-Associating-context-definitions-with-absolute-IRIs.jsonld diff --git a/examples/example-037-Defining-an-context-within-a-term-definition-expanded.jsonld b/examples/example-038-Defining-an-context-within-a-term-definition-expanded.jsonld similarity index 100% rename from examples/example-037-Defining-an-context-within-a-term-definition-expanded.jsonld rename to examples/example-038-Defining-an-context-within-a-term-definition-expanded.jsonld diff --git a/examples/example-037-Defining-an-context-within-a-term-definition-original.jsonld b/examples/example-038-Defining-an-context-within-a-term-definition-original.jsonld similarity index 100% rename from examples/example-037-Defining-an-context-within-a-term-definition-original.jsonld rename to examples/example-038-Defining-an-context-within-a-term-definition-original.jsonld diff --git a/examples/example-037-Defining-an-context-within-a-term-definition-statements.table b/examples/example-038-Defining-an-context-within-a-term-definition-statements.table similarity index 100% rename from examples/example-037-Defining-an-context-within-a-term-definition-statements.table rename to examples/example-038-Defining-an-context-within-a-term-definition-statements.table diff --git a/examples/example-037-Defining-an-context-within-a-term-definition-turtle.ttl b/examples/example-038-Defining-an-context-within-a-term-definition-turtle.ttl similarity index 100% rename from examples/example-037-Defining-an-context-within-a-term-definition-turtle.ttl rename to examples/example-038-Defining-an-context-within-a-term-definition-turtle.ttl diff --git a/examples/example-038-Defining-an-context-within-a-term-definition-used-on-type-expanded.jsonld b/examples/example-039-Defining-an-context-within-a-term-definition-used-on-type-expanded.jsonld similarity index 100% rename from examples/example-038-Defining-an-context-within-a-term-definition-used-on-type-expanded.jsonld rename to examples/example-039-Defining-an-context-within-a-term-definition-used-on-type-expanded.jsonld diff --git a/examples/example-038-Defining-an-context-within-a-term-definition-used-on-type-original.jsonld b/examples/example-039-Defining-an-context-within-a-term-definition-used-on-type-original.jsonld similarity index 100% rename from examples/example-038-Defining-an-context-within-a-term-definition-used-on-type-original.jsonld rename to examples/example-039-Defining-an-context-within-a-term-definition-used-on-type-original.jsonld diff --git a/examples/example-038-Defining-an-context-within-a-term-definition-used-on-type-statements.table b/examples/example-039-Defining-an-context-within-a-term-definition-used-on-type-statements.table similarity index 100% rename from examples/example-038-Defining-an-context-within-a-term-definition-used-on-type-statements.table rename to examples/example-039-Defining-an-context-within-a-term-definition-used-on-type-statements.table diff --git a/examples/example-038-Defining-an-context-within-a-term-definition-used-on-type-turtle.ttl b/examples/example-039-Defining-an-context-within-a-term-definition-used-on-type-turtle.ttl similarity index 100% rename from examples/example-038-Defining-an-context-within-a-term-definition-used-on-type-turtle.ttl rename to examples/example-039-Defining-an-context-within-a-term-definition-used-on-type-turtle.ttl diff --git a/examples/example-039-Expanded-term-definition-with-type-coercion-expanded.jsonld b/examples/example-040-Expanded-term-definition-with-type-coercion-expanded.jsonld similarity index 100% rename from examples/example-039-Expanded-term-definition-with-type-coercion-expanded.jsonld rename to examples/example-040-Expanded-term-definition-with-type-coercion-expanded.jsonld diff --git a/examples/example-039-Expanded-term-definition-with-type-coercion-original.jsonld b/examples/example-040-Expanded-term-definition-with-type-coercion-original.jsonld similarity index 100% rename from examples/example-039-Expanded-term-definition-with-type-coercion-original.jsonld rename to examples/example-040-Expanded-term-definition-with-type-coercion-original.jsonld diff --git a/examples/example-039-Expanded-term-definition-with-type-coercion-statements.table b/examples/example-040-Expanded-term-definition-with-type-coercion-statements.table similarity index 100% rename from examples/example-039-Expanded-term-definition-with-type-coercion-statements.table rename to examples/example-040-Expanded-term-definition-with-type-coercion-statements.table diff --git a/examples/example-039-Expanded-term-definition-with-type-coercion-turtle.ttl b/examples/example-040-Expanded-term-definition-with-type-coercion-turtle.ttl similarity index 100% rename from examples/example-039-Expanded-term-definition-with-type-coercion-turtle.ttl rename to examples/example-040-Expanded-term-definition-with-type-coercion-turtle.ttl diff --git a/examples/example-040-Expanded-value-with-type-expanded.jsonld b/examples/example-041-Expanded-value-with-type-expanded.jsonld similarity index 100% rename from examples/example-040-Expanded-value-with-type-expanded.jsonld rename to examples/example-041-Expanded-value-with-type-expanded.jsonld diff --git a/examples/example-040-Expanded-value-with-type-original.jsonld b/examples/example-041-Expanded-value-with-type-original.jsonld similarity index 100% rename from examples/example-040-Expanded-value-with-type-original.jsonld rename to examples/example-041-Expanded-value-with-type-original.jsonld diff --git a/examples/example-040-Expanded-value-with-type-statements.table b/examples/example-041-Expanded-value-with-type-statements.table similarity index 100% rename from examples/example-040-Expanded-value-with-type-statements.table rename to examples/example-041-Expanded-value-with-type-statements.table diff --git a/examples/example-040-Expanded-value-with-type-turtle.ttl b/examples/example-041-Expanded-value-with-type-turtle.ttl similarity index 100% rename from examples/example-040-Expanded-value-with-type-turtle.ttl rename to examples/example-041-Expanded-value-with-type-turtle.ttl diff --git a/examples/example-041-Example-demonstrating-the-context-sensitivity-for-type.jsonld b/examples/example-042-Example-demonstrating-the-context-sensitivity-for-type.jsonld similarity index 100% rename from examples/example-041-Example-demonstrating-the-context-sensitivity-for-type.jsonld rename to examples/example-042-Example-demonstrating-the-context-sensitivity-for-type.jsonld diff --git a/examples/example-042-Example-demonstrating-the-context-sensitivity-for-type-statements-original.table b/examples/example-043-Example-demonstrating-the-context-sensitivity-for-type-statements-original.table similarity index 100% rename from examples/example-042-Example-demonstrating-the-context-sensitivity-for-type-statements-original.table rename to examples/example-043-Example-demonstrating-the-context-sensitivity-for-type-statements-original.table diff --git a/examples/example-042-Example-demonstrating-the-context-sensitivity-for-type-statements-turtle.ttl b/examples/example-043-Example-demonstrating-the-context-sensitivity-for-type-statements-turtle.ttl similarity index 100% rename from examples/example-042-Example-demonstrating-the-context-sensitivity-for-type-statements-turtle.ttl rename to examples/example-043-Example-demonstrating-the-context-sensitivity-for-type-statements-turtle.ttl diff --git a/examples/example-043-Expanded-term-definition-with-types-expanded.jsonld b/examples/example-044-Expanded-term-definition-with-types-expanded.jsonld similarity index 100% rename from examples/example-043-Expanded-term-definition-with-types-expanded.jsonld rename to examples/example-044-Expanded-term-definition-with-types-expanded.jsonld diff --git a/examples/example-043-Expanded-term-definition-with-types-original.jsonld b/examples/example-044-Expanded-term-definition-with-types-original.jsonld similarity index 100% rename from examples/example-043-Expanded-term-definition-with-types-original.jsonld rename to examples/example-044-Expanded-term-definition-with-types-original.jsonld diff --git a/examples/example-043-Expanded-term-definition-with-types-statements.table b/examples/example-044-Expanded-term-definition-with-types-statements.table similarity index 100% rename from examples/example-043-Expanded-term-definition-with-types-statements.table rename to examples/example-044-Expanded-term-definition-with-types-statements.table diff --git a/examples/example-043-Expanded-term-definition-with-types-Turtle.ttl b/examples/example-044-Expanded-term-definition-with-types-turtle.ttl similarity index 100% rename from examples/example-043-Expanded-term-definition-with-types-Turtle.ttl rename to examples/example-044-Expanded-term-definition-with-types-turtle.ttl diff --git a/examples/example-044-Term-definitions-using-compact-and-absolute-IRIs-expanded.jsonld b/examples/example-045-Term-definitions-using-compact-and-absolute-IRIs-expanded.jsonld similarity index 100% rename from examples/example-044-Term-definitions-using-compact-and-absolute-IRIs-expanded.jsonld rename to examples/example-045-Term-definitions-using-compact-and-absolute-IRIs-expanded.jsonld diff --git a/examples/example-044-Term-definitions-using-compact-and-absolute-IRIs-original.jsonld b/examples/example-045-Term-definitions-using-compact-and-absolute-IRIs-original.jsonld similarity index 100% rename from examples/example-044-Term-definitions-using-compact-and-absolute-IRIs-original.jsonld rename to examples/example-045-Term-definitions-using-compact-and-absolute-IRIs-original.jsonld diff --git a/examples/example-044-Term-definitions-using-compact-and-absolute-IRIs-statements.table b/examples/example-045-Term-definitions-using-compact-and-absolute-IRIs-statements.table similarity index 100% rename from examples/example-044-Term-definitions-using-compact-and-absolute-IRIs-statements.table rename to examples/example-045-Term-definitions-using-compact-and-absolute-IRIs-statements.table diff --git a/examples/example-044-Term-definitions-using-compact-and-absolute-IRIs-turtle.ttl b/examples/example-045-Term-definitions-using-compact-and-absolute-IRIs-turtle.ttl similarity index 100% rename from examples/example-044-Term-definitions-using-compact-and-absolute-IRIs-turtle.ttl rename to examples/example-045-Term-definitions-using-compact-and-absolute-IRIs-turtle.ttl diff --git a/examples/example-045-Setting-the-default-language-of-a-JSON-LD-document-expanded.jsonld b/examples/example-046-Setting-the-default-language-of-a-JSON-LD-document-expanded.jsonld similarity index 100% rename from examples/example-045-Setting-the-default-language-of-a-JSON-LD-document-expanded.jsonld rename to examples/example-046-Setting-the-default-language-of-a-JSON-LD-document-expanded.jsonld diff --git a/examples/example-045-Setting-the-default-language-of-a-JSON-LD-document-original.jsonld b/examples/example-046-Setting-the-default-language-of-a-JSON-LD-document-original.jsonld similarity index 100% rename from examples/example-045-Setting-the-default-language-of-a-JSON-LD-document-original.jsonld rename to examples/example-046-Setting-the-default-language-of-a-JSON-LD-document-original.jsonld diff --git a/examples/example-045-Setting-the-default-language-of-a-JSON-LD-document-statements.table b/examples/example-046-Setting-the-default-language-of-a-JSON-LD-document-statements.table similarity index 100% rename from examples/example-045-Setting-the-default-language-of-a-JSON-LD-document-statements.table rename to examples/example-046-Setting-the-default-language-of-a-JSON-LD-document-statements.table diff --git a/examples/example-045-Setting-the-default-language-of-a-JSON-LD-document-turtle.ttl b/examples/example-046-Setting-the-default-language-of-a-JSON-LD-document-turtle.ttl similarity index 100% rename from examples/example-045-Setting-the-default-language-of-a-JSON-LD-document-turtle.ttl rename to examples/example-046-Setting-the-default-language-of-a-JSON-LD-document-turtle.ttl diff --git a/examples/example-046-Clearing-default-language.jsonld b/examples/example-047-Clearing-default-language.jsonld similarity index 100% rename from examples/example-046-Clearing-default-language.jsonld rename to examples/example-047-Clearing-default-language.jsonld diff --git a/examples/example-047-Expanded-term-definition-with-language.jsonld b/examples/example-048-Expanded-term-definition-with-language.jsonld similarity index 100% rename from examples/example-047-Expanded-term-definition-with-language.jsonld rename to examples/example-048-Expanded-term-definition-with-language.jsonld diff --git a/examples/example-048-Language-map-expressing-a-property-in-three-languages.jsonld b/examples/example-049-Language-map-expressing-a-property-in-three-languages.jsonld similarity index 100% rename from examples/example-048-Language-map-expressing-a-property-in-three-languages.jsonld rename to examples/example-049-Language-map-expressing-a-property-in-three-languages.jsonld diff --git a/examples/example-049-Overriding-default-language-using-an-expanded-value.jsonld b/examples/example-050-Overriding-default-language-using-an-expanded-value.jsonld similarity index 100% rename from examples/example-049-Overriding-default-language-using-an-expanded-value.jsonld rename to examples/example-050-Overriding-default-language-using-an-expanded-value.jsonld diff --git a/examples/example-050-Removing-language-information-using-an-expanded-value.jsonld b/examples/example-051-Removing-language-information-using-an-expanded-value.jsonld similarity index 100% rename from examples/example-050-Removing-language-information-using-an-expanded-value.jsonld rename to examples/example-051-Removing-language-information-using-an-expanded-value.jsonld diff --git a/examples/example-051-Multiple-values-with-no-inherent-order-expanded.jsonld b/examples/example-052-Multiple-values-with-no-inherent-order-expanded.jsonld similarity index 100% rename from examples/example-051-Multiple-values-with-no-inherent-order-expanded.jsonld rename to examples/example-052-Multiple-values-with-no-inherent-order-expanded.jsonld diff --git a/examples/example-051-Multiple-values-with-no-inherent-order-original.jsonld b/examples/example-052-Multiple-values-with-no-inherent-order-original.jsonld similarity index 100% rename from examples/example-051-Multiple-values-with-no-inherent-order-original.jsonld rename to examples/example-052-Multiple-values-with-no-inherent-order-original.jsonld diff --git a/examples/example-051-Multiple-values-with-no-inherent-order-statements.table b/examples/example-052-Multiple-values-with-no-inherent-order-statements.table similarity index 100% rename from examples/example-051-Multiple-values-with-no-inherent-order-statements.table rename to examples/example-052-Multiple-values-with-no-inherent-order-statements.table diff --git a/examples/example-051-Multiple-values-with-no-inherent-order-turtle.ttl b/examples/example-052-Multiple-values-with-no-inherent-order-turtle.ttl similarity index 100% rename from examples/example-051-Multiple-values-with-no-inherent-order-turtle.ttl rename to examples/example-052-Multiple-values-with-no-inherent-order-turtle.ttl diff --git a/examples/example-052-Using-an-expanded-form-to-set-multiple-values-expanded.jsonld b/examples/example-053-Using-an-expanded-form-to-set-multiple-values-expanded.jsonld similarity index 100% rename from examples/example-052-Using-an-expanded-form-to-set-multiple-values-expanded.jsonld rename to examples/example-053-Using-an-expanded-form-to-set-multiple-values-expanded.jsonld diff --git a/examples/example-052-Using-an-expanded-form-to-set-multiple-values-original.jsonld b/examples/example-053-Using-an-expanded-form-to-set-multiple-values-original.jsonld similarity index 100% rename from examples/example-052-Using-an-expanded-form-to-set-multiple-values-original.jsonld rename to examples/example-053-Using-an-expanded-form-to-set-multiple-values-original.jsonld diff --git a/examples/example-052-Using-an-expanded-form-to-set-multiple-values-statements.table b/examples/example-053-Using-an-expanded-form-to-set-multiple-values-statements.table similarity index 100% rename from examples/example-052-Using-an-expanded-form-to-set-multiple-values-statements.table rename to examples/example-053-Using-an-expanded-form-to-set-multiple-values-statements.table diff --git a/examples/example-052-Using-an-expanded-form-to-set-multiple-values-turtle.ttl b/examples/example-053-Using-an-expanded-form-to-set-multiple-values-turtle.ttl similarity index 100% rename from examples/example-052-Using-an-expanded-form-to-set-multiple-values-turtle.ttl rename to examples/example-053-Using-an-expanded-form-to-set-multiple-values-turtle.ttl diff --git a/examples/example-053-Multiple-array-values-of-different-types-expanded.jsonld b/examples/example-054-Multiple-array-values-of-different-types-expanded.jsonld similarity index 100% rename from examples/example-053-Multiple-array-values-of-different-types-expanded.jsonld rename to examples/example-054-Multiple-array-values-of-different-types-expanded.jsonld diff --git a/examples/example-053-Multiple-array-values-of-different-types-original.jsonld b/examples/example-054-Multiple-array-values-of-different-types-original.jsonld similarity index 100% rename from examples/example-053-Multiple-array-values-of-different-types-original.jsonld rename to examples/example-054-Multiple-array-values-of-different-types-original.jsonld diff --git a/examples/example-053-Multiple-array-values-of-different-types-statements.table b/examples/example-054-Multiple-array-values-of-different-types-statements.table similarity index 100% rename from examples/example-053-Multiple-array-values-of-different-types-statements.table rename to examples/example-054-Multiple-array-values-of-different-types-statements.table diff --git a/examples/example-053-Multiple-array-values-of-different-types-turtle.ttl b/examples/example-054-Multiple-array-values-of-different-types-turtle.ttl similarity index 100% rename from examples/example-053-Multiple-array-values-of-different-types-turtle.ttl rename to examples/example-054-Multiple-array-values-of-different-types-turtle.ttl diff --git a/examples/example-054-An-ordered-collection-of-values-in-JSON-LD-expanded.jsonld b/examples/example-055-An-ordered-collection-of-values-in-JSON-LD-expanded.jsonld similarity index 100% rename from examples/example-054-An-ordered-collection-of-values-in-JSON-LD-expanded.jsonld rename to examples/example-055-An-ordered-collection-of-values-in-JSON-LD-expanded.jsonld diff --git a/examples/example-054-An-ordered-collection-of-values-in-JSON-LD-original.jsonld b/examples/example-055-An-ordered-collection-of-values-in-JSON-LD-original.jsonld similarity index 100% rename from examples/example-054-An-ordered-collection-of-values-in-JSON-LD-original.jsonld rename to examples/example-055-An-ordered-collection-of-values-in-JSON-LD-original.jsonld diff --git a/examples/example-054-An-ordered-collection-of-values-in-JSON-LD-statements.table b/examples/example-055-An-ordered-collection-of-values-in-JSON-LD-statements.table similarity index 100% rename from examples/example-054-An-ordered-collection-of-values-in-JSON-LD-statements.table rename to examples/example-055-An-ordered-collection-of-values-in-JSON-LD-statements.table diff --git a/examples/example-054-An-ordered-collection-of-values-in-JSON-LD-turtle.ttl b/examples/example-055-An-ordered-collection-of-values-in-JSON-LD-turtle.ttl similarity index 100% rename from examples/example-054-An-ordered-collection-of-values-in-JSON-LD-turtle.ttl rename to examples/example-055-An-ordered-collection-of-values-in-JSON-LD-turtle.ttl diff --git a/examples/example-055-Specifying-that-a-collection-is-ordered-in-the-context-expanded.jsonld b/examples/example-056-Specifying-that-a-collection-is-ordered-in-the-context-expanded.jsonld similarity index 100% rename from examples/example-055-Specifying-that-a-collection-is-ordered-in-the-context-expanded.jsonld rename to examples/example-056-Specifying-that-a-collection-is-ordered-in-the-context-expanded.jsonld diff --git a/examples/example-055-Specifying-that-a-collection-is-ordered-in-the-context-original.jsonld b/examples/example-056-Specifying-that-a-collection-is-ordered-in-the-context-original.jsonld similarity index 100% rename from examples/example-055-Specifying-that-a-collection-is-ordered-in-the-context-original.jsonld rename to examples/example-056-Specifying-that-a-collection-is-ordered-in-the-context-original.jsonld diff --git a/examples/example-055-Specifying-that-a-collection-is-ordered-in-the-context-statements.table b/examples/example-056-Specifying-that-a-collection-is-ordered-in-the-context-statements.table similarity index 100% rename from examples/example-055-Specifying-that-a-collection-is-ordered-in-the-context-statements.table rename to examples/example-056-Specifying-that-a-collection-is-ordered-in-the-context-statements.table diff --git a/examples/example-055-Specifying-that-a-collection-is-ordered-in-the-context-turtle.ttl b/examples/example-056-Specifying-that-a-collection-is-ordered-in-the-context-turtle.ttl similarity index 100% rename from examples/example-055-Specifying-that-a-collection-is-ordered-in-the-context-turtle.ttl rename to examples/example-056-Specifying-that-a-collection-is-ordered-in-the-context-turtle.ttl diff --git a/examples/example-056-Coordinates-expressed-in-GeoJSON.json b/examples/example-057-Coordinates-expressed-in-GeoJSON.json similarity index 100% rename from examples/example-056-Coordinates-expressed-in-GeoJSON.json rename to examples/example-057-Coordinates-expressed-in-GeoJSON.json diff --git a/examples/example-057-Coordinates-expressed-in-JSON-LD-expanded.jsonld b/examples/example-058-Coordinates-expressed-in-JSON-LD-expanded.jsonld similarity index 100% rename from examples/example-057-Coordinates-expressed-in-JSON-LD-expanded.jsonld rename to examples/example-058-Coordinates-expressed-in-JSON-LD-expanded.jsonld diff --git a/examples/example-057-Coordinates-expressed-in-JSON-LD-original.json b/examples/example-058-Coordinates-expressed-in-JSON-LD-original.json similarity index 100% rename from examples/example-057-Coordinates-expressed-in-JSON-LD-original.json rename to examples/example-058-Coordinates-expressed-in-JSON-LD-original.json diff --git a/examples/example-057-Coordinates-expressed-in-JSON-LD-statements.table b/examples/example-058-Coordinates-expressed-in-JSON-LD-statements.table similarity index 100% rename from examples/example-057-Coordinates-expressed-in-JSON-LD-statements.table rename to examples/example-058-Coordinates-expressed-in-JSON-LD-statements.table diff --git a/examples/example-057-Coordinates-expressed-in-JSON-LD-turtle.ttl b/examples/example-058-Coordinates-expressed-in-JSON-LD-turtle.ttl similarity index 100% rename from examples/example-057-Coordinates-expressed-in-JSON-LD-turtle.ttl rename to examples/example-058-Coordinates-expressed-in-JSON-LD-turtle.ttl diff --git a/examples/example-058-An-unordered-collection-of-values-in-JSON-LD-expanded.jsonld b/examples/example-059-An-unordered-collection-of-values-in-JSON-LD-expanded.jsonld similarity index 100% rename from examples/example-058-An-unordered-collection-of-values-in-JSON-LD-expanded.jsonld rename to examples/example-059-An-unordered-collection-of-values-in-JSON-LD-expanded.jsonld diff --git a/examples/example-058-An-unordered-collection-of-values-in-JSON-LD-original.jsonld b/examples/example-059-An-unordered-collection-of-values-in-JSON-LD-original.jsonld similarity index 100% rename from examples/example-058-An-unordered-collection-of-values-in-JSON-LD-original.jsonld rename to examples/example-059-An-unordered-collection-of-values-in-JSON-LD-original.jsonld diff --git a/examples/example-058-An-unordered-collection-of-values-in-JSON-LD-statements.table b/examples/example-059-An-unordered-collection-of-values-in-JSON-LD-statements.table similarity index 100% rename from examples/example-058-An-unordered-collection-of-values-in-JSON-LD-statements.table rename to examples/example-059-An-unordered-collection-of-values-in-JSON-LD-statements.table diff --git a/examples/example-058-An-unordered-collection-of-values-in-JSON-LD-turtle.ttl b/examples/example-059-An-unordered-collection-of-values-in-JSON-LD-turtle.ttl similarity index 100% rename from examples/example-058-An-unordered-collection-of-values-in-JSON-LD-turtle.ttl rename to examples/example-059-An-unordered-collection-of-values-in-JSON-LD-turtle.ttl diff --git a/examples/example-059-Specifying-that-a-collection-is-unordered-in-the-context-expanded.jsonld b/examples/example-060-Specifying-that-a-collection-is-unordered-in-the-context-expanded.jsonld similarity index 100% rename from examples/example-059-Specifying-that-a-collection-is-unordered-in-the-context-expanded.jsonld rename to examples/example-060-Specifying-that-a-collection-is-unordered-in-the-context-expanded.jsonld diff --git a/examples/example-059-Specifying-that-a-collection-is-unordered-in-the-context-original.jsonld b/examples/example-060-Specifying-that-a-collection-is-unordered-in-the-context-original.jsonld similarity index 100% rename from examples/example-059-Specifying-that-a-collection-is-unordered-in-the-context-original.jsonld rename to examples/example-060-Specifying-that-a-collection-is-unordered-in-the-context-original.jsonld diff --git a/examples/example-059-Specifying-that-a-collection-is-unordered-in-the-context-statements.table b/examples/example-060-Specifying-that-a-collection-is-unordered-in-the-context-statements.table similarity index 100% rename from examples/example-059-Specifying-that-a-collection-is-unordered-in-the-context-statements.table rename to examples/example-060-Specifying-that-a-collection-is-unordered-in-the-context-statements.table diff --git a/examples/example-059-Specifying-that-a-collection-is-unordered-in-the-context-turtle.ttl b/examples/example-060-Specifying-that-a-collection-is-unordered-in-the-context-turtle.ttl similarity index 100% rename from examples/example-059-Specifying-that-a-collection-is-unordered-in-the-context-turtle.ttl rename to examples/example-060-Specifying-that-a-collection-is-unordered-in-the-context-turtle.ttl diff --git a/examples/example-060-Nested-properties-expanded.jsonld b/examples/example-061-Nested-properties-expanded.jsonld similarity index 100% rename from examples/example-060-Nested-properties-expanded.jsonld rename to examples/example-061-Nested-properties-expanded.jsonld diff --git a/examples/example-060-Nested-properties-original.jsonld b/examples/example-061-Nested-properties-original.jsonld similarity index 100% rename from examples/example-060-Nested-properties-original.jsonld rename to examples/example-061-Nested-properties-original.jsonld diff --git a/examples/example-060-Nested-properties-statements.table b/examples/example-061-Nested-properties-statements.table similarity index 100% rename from examples/example-060-Nested-properties-statements.table rename to examples/example-061-Nested-properties-statements.table diff --git a/examples/example-060-Nested-properties-turtle.ttl b/examples/example-061-Nested-properties-turtle.ttl similarity index 100% rename from examples/example-060-Nested-properties-turtle.ttl rename to examples/example-061-Nested-properties-turtle.ttl diff --git a/examples/example-061-Nested-properties-folded-into-containing-object-expanded.jsonld b/examples/example-062-Nested-properties-folded-into-containing-object-expanded.jsonld similarity index 100% rename from examples/example-061-Nested-properties-folded-into-containing-object-expanded.jsonld rename to examples/example-062-Nested-properties-folded-into-containing-object-expanded.jsonld diff --git a/examples/example-061-Nested-properties-folded-into-containing-object-original.jsonld b/examples/example-062-Nested-properties-folded-into-containing-object-original.jsonld similarity index 100% rename from examples/example-061-Nested-properties-folded-into-containing-object-original.jsonld rename to examples/example-062-Nested-properties-folded-into-containing-object-original.jsonld diff --git a/examples/example-061-Nested-properties-folded-into-containing-object-statements.table b/examples/example-062-Nested-properties-folded-into-containing-object-statements.table similarity index 100% rename from examples/example-061-Nested-properties-folded-into-containing-object-statements.table rename to examples/example-062-Nested-properties-folded-into-containing-object-statements.table diff --git a/examples/example-061-Nested-properties-folded-into-containing-object-turtle.ttl b/examples/example-062-Nested-properties-folded-into-containing-object-turtle.ttl similarity index 100% rename from examples/example-061-Nested-properties-folded-into-containing-object-turtle.ttl rename to examples/example-062-Nested-properties-folded-into-containing-object-turtle.ttl diff --git a/examples/example-062-Defining-property-nesting-expanded.jsonld b/examples/example-063-Defining-property-nesting-expanded.jsonld similarity index 100% rename from examples/example-062-Defining-property-nesting-expanded.jsonld rename to examples/example-063-Defining-property-nesting-expanded.jsonld diff --git a/examples/example-062-Defining-property-nesting-original.jsonld b/examples/example-063-Defining-property-nesting-original.jsonld similarity index 100% rename from examples/example-062-Defining-property-nesting-original.jsonld rename to examples/example-063-Defining-property-nesting-original.jsonld diff --git a/examples/example-062-Defining-property-nesting-statements.table b/examples/example-063-Defining-property-nesting-statements.table similarity index 100% rename from examples/example-062-Defining-property-nesting-statements.table rename to examples/example-063-Defining-property-nesting-statements.table diff --git a/examples/example-062-Defining-property-nesting-turtle.ttl b/examples/example-063-Defining-property-nesting-turtle.ttl similarity index 100% rename from examples/example-062-Defining-property-nesting-turtle.ttl rename to examples/example-063-Defining-property-nesting-turtle.ttl diff --git a/examples/example-063-Referencing-node-objects-expanded.jsonld b/examples/example-064-Referencing-node-objects-expanded.jsonld similarity index 100% rename from examples/example-063-Referencing-node-objects-expanded.jsonld rename to examples/example-064-Referencing-node-objects-expanded.jsonld diff --git a/examples/example-063-Referencing-node-objects-original.jsonld b/examples/example-064-Referencing-node-objects-original.jsonld similarity index 100% rename from examples/example-063-Referencing-node-objects-original.jsonld rename to examples/example-064-Referencing-node-objects-original.jsonld diff --git a/examples/example-063-Referencing-node-objects-statements.table b/examples/example-064-Referencing-node-objects-statements.table similarity index 100% rename from examples/example-063-Referencing-node-objects-statements.table rename to examples/example-064-Referencing-node-objects-statements.table diff --git a/examples/example-063-Referencing-node-objects-turtle.ttl b/examples/example-064-Referencing-node-objects-turtle.ttl similarity index 100% rename from examples/example-063-Referencing-node-objects-turtle.ttl rename to examples/example-064-Referencing-node-objects-turtle.ttl diff --git a/examples/example-064-Embedding-a-node-object-as-property-value-of-another-node-object-expanded.jsonld b/examples/example-065-Embedding-a-node-object-as-property-value-of-another-node-object-expanded.jsonld similarity index 100% rename from examples/example-064-Embedding-a-node-object-as-property-value-of-another-node-object-expanded.jsonld rename to examples/example-065-Embedding-a-node-object-as-property-value-of-another-node-object-expanded.jsonld diff --git a/examples/example-064-Embedding-a-node-object-as-property-value-of-another-node-object-original.jsonld b/examples/example-065-Embedding-a-node-object-as-property-value-of-another-node-object-original.jsonld similarity index 100% rename from examples/example-064-Embedding-a-node-object-as-property-value-of-another-node-object-original.jsonld rename to examples/example-065-Embedding-a-node-object-as-property-value-of-another-node-object-original.jsonld diff --git a/examples/example-064-Embedding-a-node-object-as-property-value-of-another-node-object-statements.table b/examples/example-065-Embedding-a-node-object-as-property-value-of-another-node-object-statements.table similarity index 100% rename from examples/example-064-Embedding-a-node-object-as-property-value-of-another-node-object-statements.table rename to examples/example-065-Embedding-a-node-object-as-property-value-of-another-node-object-statements.table diff --git a/examples/example-064-Embedding-a-node-object-as-property-value-of-another-node-object-turtle.ttl b/examples/example-065-Embedding-a-node-object-as-property-value-of-another-node-object-turtle.ttl similarity index 100% rename from examples/example-064-Embedding-a-node-object-as-property-value-of-another-node-object-turtle.ttl rename to examples/example-065-Embedding-a-node-object-as-property-value-of-another-node-object-turtle.ttl diff --git a/examples/example-065-Referencing-an-unidentified-node-expanded.jsonld b/examples/example-066-Referencing-an-unidentified-node-expanded.jsonld similarity index 100% rename from examples/example-065-Referencing-an-unidentified-node-expanded.jsonld rename to examples/example-066-Referencing-an-unidentified-node-expanded.jsonld diff --git a/examples/example-065-Referencing-an-unidentified-node-original.jsonld b/examples/example-066-Referencing-an-unidentified-node-original.jsonld similarity index 100% rename from examples/example-065-Referencing-an-unidentified-node-original.jsonld rename to examples/example-066-Referencing-an-unidentified-node-original.jsonld diff --git a/examples/example-065-Referencing-an-unidentified-node-statements.table b/examples/example-066-Referencing-an-unidentified-node-statements.table similarity index 100% rename from examples/example-065-Referencing-an-unidentified-node-statements.table rename to examples/example-066-Referencing-an-unidentified-node-statements.table diff --git a/examples/example-065-Referencing-an-unidentified-node-turtle.ttl b/examples/example-066-Referencing-an-unidentified-node-turtle.ttl similarity index 100% rename from examples/example-065-Referencing-an-unidentified-node-turtle.ttl rename to examples/example-066-Referencing-an-unidentified-node-turtle.ttl diff --git a/examples/example-066-Specifying-a-local-blank-node-identifier-expanded.jsonld b/examples/example-067-Specifying-a-local-blank-node-identifier-expanded.jsonld similarity index 100% rename from examples/example-066-Specifying-a-local-blank-node-identifier-expanded.jsonld rename to examples/example-067-Specifying-a-local-blank-node-identifier-expanded.jsonld diff --git a/examples/example-066-Specifying-a-local-blank-node-identifier-original.jsonld b/examples/example-067-Specifying-a-local-blank-node-identifier-original.jsonld similarity index 100% rename from examples/example-066-Specifying-a-local-blank-node-identifier-original.jsonld rename to examples/example-067-Specifying-a-local-blank-node-identifier-original.jsonld diff --git a/examples/example-066-Specifying-a-local-blank-node-identifier-statements.table b/examples/example-067-Specifying-a-local-blank-node-identifier-statements.table similarity index 100% rename from examples/example-066-Specifying-a-local-blank-node-identifier-statements.table rename to examples/example-067-Specifying-a-local-blank-node-identifier-statements.table diff --git a/examples/example-066-Specifying-a-local-blank-node-identifier-turtle.ttl b/examples/example-067-Specifying-a-local-blank-node-identifier-turtle.ttl similarity index 100% rename from examples/example-066-Specifying-a-local-blank-node-identifier-turtle.ttl rename to examples/example-067-Specifying-a-local-blank-node-identifier-turtle.ttl diff --git a/examples/example-067-Indexing-data-in-JSON-LD-expanded.jsonld b/examples/example-068-Indexing-data-in-JSON-LD-expanded.jsonld similarity index 100% rename from examples/example-067-Indexing-data-in-JSON-LD-expanded.jsonld rename to examples/example-068-Indexing-data-in-JSON-LD-expanded.jsonld diff --git a/examples/example-067-Indexing-data-in-JSON-LD-original.jsonld b/examples/example-068-Indexing-data-in-JSON-LD-original.jsonld similarity index 100% rename from examples/example-067-Indexing-data-in-JSON-LD-original.jsonld rename to examples/example-068-Indexing-data-in-JSON-LD-original.jsonld diff --git a/examples/example-067-Indexing-data-in-JSON-LD-statements.table b/examples/example-068-Indexing-data-in-JSON-LD-statements.table similarity index 100% rename from examples/example-067-Indexing-data-in-JSON-LD-statements.table rename to examples/example-068-Indexing-data-in-JSON-LD-statements.table diff --git a/examples/example-067-Indexing-data-in-JSON-LD-turtle.ttl b/examples/example-068-Indexing-data-in-JSON-LD-turtle.ttl similarity index 100% rename from examples/example-067-Indexing-data-in-JSON-LD-turtle.ttl rename to examples/example-068-Indexing-data-in-JSON-LD-turtle.ttl diff --git a/examples/example-068-Indexing-data-using-none-expanded.jsonld b/examples/example-069-Indexing-data-using-none-expanded.jsonld similarity index 100% rename from examples/example-068-Indexing-data-using-none-expanded.jsonld rename to examples/example-069-Indexing-data-using-none-expanded.jsonld diff --git a/examples/example-068-Indexing-data-using-none-original.jsonld b/examples/example-069-Indexing-data-using-none-original.jsonld similarity index 100% rename from examples/example-068-Indexing-data-using-none-original.jsonld rename to examples/example-069-Indexing-data-using-none-original.jsonld diff --git a/examples/example-068-Indexing-data-using-none-statements.table b/examples/example-069-Indexing-data-using-none-statements.table similarity index 100% rename from examples/example-068-Indexing-data-using-none-statements.table rename to examples/example-069-Indexing-data-using-none-statements.table diff --git a/examples/example-068-Indexing-data-using-none-turtle.ttl b/examples/example-069-Indexing-data-using-none-turtle.ttl similarity index 100% rename from examples/example-068-Indexing-data-using-none-turtle.ttl rename to examples/example-069-Indexing-data-using-none-turtle.ttl diff --git a/examples/example-069-Indexing-languaged-tagged-strings-in-JSON-LD-expanded.jsonld b/examples/example-070-Indexing-languaged-tagged-strings-in-JSON-LD-expanded.jsonld similarity index 100% rename from examples/example-069-Indexing-languaged-tagged-strings-in-JSON-LD-expanded.jsonld rename to examples/example-070-Indexing-languaged-tagged-strings-in-JSON-LD-expanded.jsonld diff --git a/examples/example-069-Indexing-languaged-tagged-strings-in-JSON-LD-original.jsonld b/examples/example-070-Indexing-languaged-tagged-strings-in-JSON-LD-original.jsonld similarity index 100% rename from examples/example-069-Indexing-languaged-tagged-strings-in-JSON-LD-original.jsonld rename to examples/example-070-Indexing-languaged-tagged-strings-in-JSON-LD-original.jsonld diff --git a/examples/example-069-Indexing-languaged-tagged-strings-in-JSON-LD-statements.table b/examples/example-070-Indexing-languaged-tagged-strings-in-JSON-LD-statements.table similarity index 100% rename from examples/example-069-Indexing-languaged-tagged-strings-in-JSON-LD-statements.table rename to examples/example-070-Indexing-languaged-tagged-strings-in-JSON-LD-statements.table diff --git a/examples/example-069-Indexing-languaged-tagged-strings-in-JSON-LD-turtle.ttl b/examples/example-070-Indexing-languaged-tagged-strings-in-JSON-LD-turtle.ttl similarity index 100% rename from examples/example-069-Indexing-languaged-tagged-strings-in-JSON-LD-turtle.ttl rename to examples/example-070-Indexing-languaged-tagged-strings-in-JSON-LD-turtle.ttl diff --git a/examples/example-070-Indexing-languaged-tagged-strings-in-JSON-LD-with-set-representation-expanded.jsonld b/examples/example-071-Indexing-languaged-tagged-strings-in-JSON-LD-with-set-representation-expanded.jsonld similarity index 100% rename from examples/example-070-Indexing-languaged-tagged-strings-in-JSON-LD-with-set-representation-expanded.jsonld rename to examples/example-071-Indexing-languaged-tagged-strings-in-JSON-LD-with-set-representation-expanded.jsonld diff --git a/examples/example-070-Indexing-languaged-tagged-strings-in-JSON-LD-with-set-representation-original.jsonld b/examples/example-071-Indexing-languaged-tagged-strings-in-JSON-LD-with-set-representation-original.jsonld similarity index 100% rename from examples/example-070-Indexing-languaged-tagged-strings-in-JSON-LD-with-set-representation-original.jsonld rename to examples/example-071-Indexing-languaged-tagged-strings-in-JSON-LD-with-set-representation-original.jsonld diff --git a/examples/example-070-Indexing-languaged-tagged-strings-in-JSON-LD-with-set-representation-statements.table b/examples/example-071-Indexing-languaged-tagged-strings-in-JSON-LD-with-set-representation-statements.table similarity index 100% rename from examples/example-070-Indexing-languaged-tagged-strings-in-JSON-LD-with-set-representation-statements.table rename to examples/example-071-Indexing-languaged-tagged-strings-in-JSON-LD-with-set-representation-statements.table diff --git a/examples/example-070-Indexing-languaged-tagged-strings-in-JSON-LD-with-set-representation-turtle.ttl b/examples/example-071-Indexing-languaged-tagged-strings-in-JSON-LD-with-set-representation-turtle.ttl similarity index 100% rename from examples/example-070-Indexing-languaged-tagged-strings-in-JSON-LD-with-set-representation-turtle.ttl rename to examples/example-071-Indexing-languaged-tagged-strings-in-JSON-LD-with-set-representation-turtle.ttl diff --git a/examples/example-071-Indexing-languaged-tagged-strings-using-none-for-no-language-expanded.jsonld b/examples/example-072-Indexing-languaged-tagged-strings-using-none-for-no-language-expanded.jsonld similarity index 100% rename from examples/example-071-Indexing-languaged-tagged-strings-using-none-for-no-language-expanded.jsonld rename to examples/example-072-Indexing-languaged-tagged-strings-using-none-for-no-language-expanded.jsonld diff --git a/examples/example-071-Indexing-languaged-tagged-strings-using-none-for-no-language-original.jsonld b/examples/example-072-Indexing-languaged-tagged-strings-using-none-for-no-language-original.jsonld similarity index 100% rename from examples/example-071-Indexing-languaged-tagged-strings-using-none-for-no-language-original.jsonld rename to examples/example-072-Indexing-languaged-tagged-strings-using-none-for-no-language-original.jsonld diff --git a/examples/example-071-Indexing-languaged-tagged-strings-using-none-for-no-language-statements.table b/examples/example-072-Indexing-languaged-tagged-strings-using-none-for-no-language-statements.table similarity index 100% rename from examples/example-071-Indexing-languaged-tagged-strings-using-none-for-no-language-statements.table rename to examples/example-072-Indexing-languaged-tagged-strings-using-none-for-no-language-statements.table diff --git a/examples/example-071-Indexing-languaged-tagged-strings-using-none-for-no-language-turtle.ttl b/examples/example-072-Indexing-languaged-tagged-strings-using-none-for-no-language-turtle.ttl similarity index 100% rename from examples/example-071-Indexing-languaged-tagged-strings-using-none-for-no-language-turtle.ttl rename to examples/example-072-Indexing-languaged-tagged-strings-using-none-for-no-language-turtle.ttl diff --git a/examples/example-072-Indexing-data-in-JSON-LD-by-node-identifiers-expanded.jsonld b/examples/example-073-Indexing-data-in-JSON-LD-by-node-identifiers-expanded.jsonld similarity index 100% rename from examples/example-072-Indexing-data-in-JSON-LD-by-node-identifiers-expanded.jsonld rename to examples/example-073-Indexing-data-in-JSON-LD-by-node-identifiers-expanded.jsonld diff --git a/examples/example-072-Indexing-data-in-JSON-LD-by-node-identifiers-original.jsonld b/examples/example-073-Indexing-data-in-JSON-LD-by-node-identifiers-original.jsonld similarity index 100% rename from examples/example-072-Indexing-data-in-JSON-LD-by-node-identifiers-original.jsonld rename to examples/example-073-Indexing-data-in-JSON-LD-by-node-identifiers-original.jsonld diff --git a/examples/example-072-Indexing-data-in-JSON-LD-by-node-identifiers-statements.table b/examples/example-073-Indexing-data-in-JSON-LD-by-node-identifiers-statements.table similarity index 100% rename from examples/example-072-Indexing-data-in-JSON-LD-by-node-identifiers-statements.table rename to examples/example-073-Indexing-data-in-JSON-LD-by-node-identifiers-statements.table diff --git a/examples/example-072-Indexing-data-in-JSON-LD-by-node-identifiers-turtle.ttl b/examples/example-073-Indexing-data-in-JSON-LD-by-node-identifiers-turtle.ttl similarity index 100% rename from examples/example-072-Indexing-data-in-JSON-LD-by-node-identifiers-turtle.ttl rename to examples/example-073-Indexing-data-in-JSON-LD-by-node-identifiers-turtle.ttl diff --git a/examples/example-073-Indexing-data-in-JSON-LD-by-node-identifiers-with-set-representation-expanded.jsonld b/examples/example-074-Indexing-data-in-JSON-LD-by-node-identifiers-with-set-representation-expanded.jsonld similarity index 100% rename from examples/example-073-Indexing-data-in-JSON-LD-by-node-identifiers-with-set-representation-expanded.jsonld rename to examples/example-074-Indexing-data-in-JSON-LD-by-node-identifiers-with-set-representation-expanded.jsonld diff --git a/examples/example-073-Indexing-data-in-JSON-LD-by-node-identifiers-with-set-representation-original.jsonld b/examples/example-074-Indexing-data-in-JSON-LD-by-node-identifiers-with-set-representation-original.jsonld similarity index 100% rename from examples/example-073-Indexing-data-in-JSON-LD-by-node-identifiers-with-set-representation-original.jsonld rename to examples/example-074-Indexing-data-in-JSON-LD-by-node-identifiers-with-set-representation-original.jsonld diff --git a/examples/example-073-Indexing-data-in-JSON-LD-by-node-identifiers-with-set-representation-statements.table b/examples/example-074-Indexing-data-in-JSON-LD-by-node-identifiers-with-set-representation-statements.table similarity index 100% rename from examples/example-073-Indexing-data-in-JSON-LD-by-node-identifiers-with-set-representation-statements.table rename to examples/example-074-Indexing-data-in-JSON-LD-by-node-identifiers-with-set-representation-statements.table diff --git a/examples/example-073-Indexing-data-in-JSON-LD-by-node-identifiers-with-set-representation-turtle.ttl b/examples/example-074-Indexing-data-in-JSON-LD-by-node-identifiers-with-set-representation-turtle.ttl similarity index 100% rename from examples/example-073-Indexing-data-in-JSON-LD-by-node-identifiers-with-set-representation-turtle.ttl rename to examples/example-074-Indexing-data-in-JSON-LD-by-node-identifiers-with-set-representation-turtle.ttl diff --git a/examples/example-074-Indexing-data-in-JSON-LD-by-node-identifiers-using-none-expanded.jsonld b/examples/example-075-Indexing-data-in-JSON-LD-by-node-identifiers-using-none-expanded.jsonld similarity index 100% rename from examples/example-074-Indexing-data-in-JSON-LD-by-node-identifiers-using-none-expanded.jsonld rename to examples/example-075-Indexing-data-in-JSON-LD-by-node-identifiers-using-none-expanded.jsonld diff --git a/examples/example-074-Indexing-data-in-JSON-LD-by-node-identifiers-using-none-original.jsonld b/examples/example-075-Indexing-data-in-JSON-LD-by-node-identifiers-using-none-original.jsonld similarity index 100% rename from examples/example-074-Indexing-data-in-JSON-LD-by-node-identifiers-using-none-original.jsonld rename to examples/example-075-Indexing-data-in-JSON-LD-by-node-identifiers-using-none-original.jsonld diff --git a/examples/example-074-Indexing-data-in-JSON-LD-by-node-identifiers-using-none-statements.table b/examples/example-075-Indexing-data-in-JSON-LD-by-node-identifiers-using-none-statements.table similarity index 100% rename from examples/example-074-Indexing-data-in-JSON-LD-by-node-identifiers-using-none-statements.table rename to examples/example-075-Indexing-data-in-JSON-LD-by-node-identifiers-using-none-statements.table diff --git a/examples/example-074-Indexing-data-in-JSON-LD-by-node-identifiers-using-none-turtle.ttl b/examples/example-075-Indexing-data-in-JSON-LD-by-node-identifiers-using-none-turtle.ttl similarity index 100% rename from examples/example-074-Indexing-data-in-JSON-LD-by-node-identifiers-using-none-turtle.ttl rename to examples/example-075-Indexing-data-in-JSON-LD-by-node-identifiers-using-none-turtle.ttl diff --git a/examples/example-075-Indexing-data-in-JSON-LD-by-type-expanded.jsonld b/examples/example-076-Indexing-data-in-JSON-LD-by-type-expanded.jsonld similarity index 100% rename from examples/example-075-Indexing-data-in-JSON-LD-by-type-expanded.jsonld rename to examples/example-076-Indexing-data-in-JSON-LD-by-type-expanded.jsonld diff --git a/examples/example-075-Indexing-data-in-JSON-LD-by-type-original.jsonld b/examples/example-076-Indexing-data-in-JSON-LD-by-type-original.jsonld similarity index 100% rename from examples/example-075-Indexing-data-in-JSON-LD-by-type-original.jsonld rename to examples/example-076-Indexing-data-in-JSON-LD-by-type-original.jsonld diff --git a/examples/example-075-Indexing-data-in-JSON-LD-by-type-statements.table b/examples/example-076-Indexing-data-in-JSON-LD-by-type-statements.table similarity index 100% rename from examples/example-075-Indexing-data-in-JSON-LD-by-type-statements.table rename to examples/example-076-Indexing-data-in-JSON-LD-by-type-statements.table diff --git a/examples/example-075-Indexing-data-in-JSON-LD-by-type-turtle.ttl b/examples/example-076-Indexing-data-in-JSON-LD-by-type-turtle.ttl similarity index 100% rename from examples/example-075-Indexing-data-in-JSON-LD-by-type-turtle.ttl rename to examples/example-076-Indexing-data-in-JSON-LD-by-type-turtle.ttl diff --git a/examples/example-076-Indexing-data-in-JSON-LD-by-type-with-set-representation-expanded.jsonld b/examples/example-077-Indexing-data-in-JSON-LD-by-type-with-set-representation-expanded.jsonld similarity index 100% rename from examples/example-076-Indexing-data-in-JSON-LD-by-type-with-set-representation-expanded.jsonld rename to examples/example-077-Indexing-data-in-JSON-LD-by-type-with-set-representation-expanded.jsonld diff --git a/examples/example-076-Indexing-data-in-JSON-LD-by-type-with-set-representation-original.jsonld b/examples/example-077-Indexing-data-in-JSON-LD-by-type-with-set-representation-original.jsonld similarity index 100% rename from examples/example-076-Indexing-data-in-JSON-LD-by-type-with-set-representation-original.jsonld rename to examples/example-077-Indexing-data-in-JSON-LD-by-type-with-set-representation-original.jsonld diff --git a/examples/example-076-Indexing-data-in-JSON-LD-by-type-with-set-representation-statements.table b/examples/example-077-Indexing-data-in-JSON-LD-by-type-with-set-representation-statements.table similarity index 100% rename from examples/example-076-Indexing-data-in-JSON-LD-by-type-with-set-representation-statements.table rename to examples/example-077-Indexing-data-in-JSON-LD-by-type-with-set-representation-statements.table diff --git a/examples/example-076-Indexing-data-in-JSON-LD-by-type-with-set-representation-turtle.ttl b/examples/example-077-Indexing-data-in-JSON-LD-by-type-with-set-representation-turtle.ttl similarity index 100% rename from examples/example-076-Indexing-data-in-JSON-LD-by-type-with-set-representation-turtle.ttl rename to examples/example-077-Indexing-data-in-JSON-LD-by-type-with-set-representation-turtle.ttl diff --git a/examples/example-077-Indexing-data-in-JSON-LD-by-type-using-none-expanded.jsonld b/examples/example-078-Indexing-data-in-JSON-LD-by-type-using-none-expanded.jsonld similarity index 100% rename from examples/example-077-Indexing-data-in-JSON-LD-by-type-using-none-expanded.jsonld rename to examples/example-078-Indexing-data-in-JSON-LD-by-type-using-none-expanded.jsonld diff --git a/examples/example-077-Indexing-data-in-JSON-LD-by-type-using-none-original.jsonld b/examples/example-078-Indexing-data-in-JSON-LD-by-type-using-none-original.jsonld similarity index 100% rename from examples/example-077-Indexing-data-in-JSON-LD-by-type-using-none-original.jsonld rename to examples/example-078-Indexing-data-in-JSON-LD-by-type-using-none-original.jsonld diff --git a/examples/example-077-Indexing-data-in-JSON-LD-by-type-using-none-statements.table b/examples/example-078-Indexing-data-in-JSON-LD-by-type-using-none-statements.table similarity index 100% rename from examples/example-077-Indexing-data-in-JSON-LD-by-type-using-none-statements.table rename to examples/example-078-Indexing-data-in-JSON-LD-by-type-using-none-statements.table diff --git a/examples/example-077-Indexing-data-in-JSON-LD-by-type-using-none-turtle.ttl b/examples/example-078-Indexing-data-in-JSON-LD-by-type-using-none-turtle.ttl similarity index 100% rename from examples/example-077-Indexing-data-in-JSON-LD-by-type-using-none-turtle.ttl rename to examples/example-078-Indexing-data-in-JSON-LD-by-type-using-none-turtle.ttl diff --git a/examples/example-078-A-document-with-children-linking-to-their-parent-expanded.jsonld b/examples/example-079-A-document-with-children-linking-to-their-parent-expanded.jsonld similarity index 100% rename from examples/example-078-A-document-with-children-linking-to-their-parent-expanded.jsonld rename to examples/example-079-A-document-with-children-linking-to-their-parent-expanded.jsonld diff --git a/examples/example-078-A-document-with-children-linking-to-their-parent-original.jsonld b/examples/example-079-A-document-with-children-linking-to-their-parent-original.jsonld similarity index 100% rename from examples/example-078-A-document-with-children-linking-to-their-parent-original.jsonld rename to examples/example-079-A-document-with-children-linking-to-their-parent-original.jsonld diff --git a/examples/example-078-A-document-with-children-linking-to-their-parent-statements.table b/examples/example-079-A-document-with-children-linking-to-their-parent-statements.table similarity index 100% rename from examples/example-078-A-document-with-children-linking-to-their-parent-statements.table rename to examples/example-079-A-document-with-children-linking-to-their-parent-statements.table diff --git a/examples/example-078-A-document-with-children-linking-to-their-parent-turtle.ttl b/examples/example-079-A-document-with-children-linking-to-their-parent-turtle.ttl similarity index 100% rename from examples/example-078-A-document-with-children-linking-to-their-parent-turtle.ttl rename to examples/example-079-A-document-with-children-linking-to-their-parent-turtle.ttl diff --git a/examples/example-079-A-person-and-its-children-using-a-reverse-property-expanded.jsonld b/examples/example-080-A-person-and-its-children-using-a-reverse-property-expanded.jsonld similarity index 100% rename from examples/example-079-A-person-and-its-children-using-a-reverse-property-expanded.jsonld rename to examples/example-080-A-person-and-its-children-using-a-reverse-property-expanded.jsonld diff --git a/examples/example-079-A-person-and-its-children-using-a-reverse-property-flattened.jsonld b/examples/example-080-A-person-and-its-children-using-a-reverse-property-flattened.jsonld similarity index 100% rename from examples/example-079-A-person-and-its-children-using-a-reverse-property-flattened.jsonld rename to examples/example-080-A-person-and-its-children-using-a-reverse-property-flattened.jsonld diff --git a/examples/example-079-A-person-and-its-children-using-a-reverse-property-original.jsonld b/examples/example-080-A-person-and-its-children-using-a-reverse-property-original.jsonld similarity index 100% rename from examples/example-079-A-person-and-its-children-using-a-reverse-property-original.jsonld rename to examples/example-080-A-person-and-its-children-using-a-reverse-property-original.jsonld diff --git a/examples/example-079-A-person-and-its-children-using-a-reverse-property-statements.table b/examples/example-080-A-person-and-its-children-using-a-reverse-property-statements.table similarity index 100% rename from examples/example-079-A-person-and-its-children-using-a-reverse-property-statements.table rename to examples/example-080-A-person-and-its-children-using-a-reverse-property-statements.table diff --git a/examples/example-079-A-person-and-its-children-using-a-reverse-property-turtle.ttl b/examples/example-080-A-person-and-its-children-using-a-reverse-property-turtle.ttl similarity index 100% rename from examples/example-079-A-person-and-its-children-using-a-reverse-property-turtle.ttl rename to examples/example-080-A-person-and-its-children-using-a-reverse-property-turtle.ttl diff --git a/examples/example-080-Using-reverse-to-define-reverse-properties-expanded.jsonld b/examples/example-081-Using-reverse-to-define-reverse-properties-expanded.jsonld similarity index 100% rename from examples/example-080-Using-reverse-to-define-reverse-properties-expanded.jsonld rename to examples/example-081-Using-reverse-to-define-reverse-properties-expanded.jsonld diff --git a/examples/example-080-Using-reverse-to-define-reverse-properties-flattened.jsonld b/examples/example-081-Using-reverse-to-define-reverse-properties-flattened.jsonld similarity index 100% rename from examples/example-080-Using-reverse-to-define-reverse-properties-flattened.jsonld rename to examples/example-081-Using-reverse-to-define-reverse-properties-flattened.jsonld diff --git a/examples/example-080-Using-reverse-to-define-reverse-properties-original.jsonld b/examples/example-081-Using-reverse-to-define-reverse-properties-original.jsonld similarity index 100% rename from examples/example-080-Using-reverse-to-define-reverse-properties-original.jsonld rename to examples/example-081-Using-reverse-to-define-reverse-properties-original.jsonld diff --git a/examples/example-080-Using-reverse-to-define-reverse-properties-statements.table b/examples/example-081-Using-reverse-to-define-reverse-properties-statements.table similarity index 100% rename from examples/example-080-Using-reverse-to-define-reverse-properties-statements.table rename to examples/example-081-Using-reverse-to-define-reverse-properties-statements.table diff --git a/examples/example-080-Using-reverse-to-define-reverse-properties-turtle.ttl b/examples/example-081-Using-reverse-to-define-reverse-properties-turtle.ttl similarity index 100% rename from examples/example-080-Using-reverse-to-define-reverse-properties-turtle.ttl rename to examples/example-081-Using-reverse-to-define-reverse-properties-turtle.ttl diff --git a/examples/example-081-Identifying-and-making-statements-about-a-graph-expanded.jsonld b/examples/example-082-Identifying-and-making-statements-about-a-graph-expanded.jsonld similarity index 100% rename from examples/example-081-Identifying-and-making-statements-about-a-graph-expanded.jsonld rename to examples/example-082-Identifying-and-making-statements-about-a-graph-expanded.jsonld diff --git a/examples/example-081-Identifying-and-making-statements-about-a-graph-original.jsonld b/examples/example-082-Identifying-and-making-statements-about-a-graph-original.jsonld similarity index 100% rename from examples/example-081-Identifying-and-making-statements-about-a-graph-original.jsonld rename to examples/example-082-Identifying-and-making-statements-about-a-graph-original.jsonld diff --git a/examples/example-081-Identifying-and-making-statements-about-a-graph-statements.table b/examples/example-082-Identifying-and-making-statements-about-a-graph-statements.table similarity index 100% rename from examples/example-081-Identifying-and-making-statements-about-a-graph-statements.table rename to examples/example-082-Identifying-and-making-statements-about-a-graph-statements.table diff --git a/examples/example-081-Identifying-and-making-statements-about-a-graph-trig.trig b/examples/example-082-Identifying-and-making-statements-about-a-graph-trig.trig similarity index 100% rename from examples/example-081-Identifying-and-making-statements-about-a-graph-trig.trig rename to examples/example-082-Identifying-and-making-statements-about-a-graph-trig.trig diff --git a/examples/example-082-Using-graph-to-explicitly-express-the-default-graph-expanded.jsonld b/examples/example-083-Using-graph-to-explicitly-express-the-default-graph-expanded.jsonld similarity index 100% rename from examples/example-082-Using-graph-to-explicitly-express-the-default-graph-expanded.jsonld rename to examples/example-083-Using-graph-to-explicitly-express-the-default-graph-expanded.jsonld diff --git a/examples/example-082-Using-graph-to-explicitly-express-the-default-graph-original.jsonld b/examples/example-083-Using-graph-to-explicitly-express-the-default-graph-original.jsonld similarity index 100% rename from examples/example-082-Using-graph-to-explicitly-express-the-default-graph-original.jsonld rename to examples/example-083-Using-graph-to-explicitly-express-the-default-graph-original.jsonld diff --git a/examples/example-082-Using-graph-to-explicitly-express-the-default-graph-statements.table b/examples/example-083-Using-graph-to-explicitly-express-the-default-graph-statements.table similarity index 100% rename from examples/example-082-Using-graph-to-explicitly-express-the-default-graph-statements.table rename to examples/example-083-Using-graph-to-explicitly-express-the-default-graph-statements.table diff --git a/examples/example-082-Using-graph-to-explicitly-express-the-default-graph-trig.trig b/examples/example-083-Using-graph-to-explicitly-express-the-default-graph-trig.trig similarity index 100% rename from examples/example-082-Using-graph-to-explicitly-express-the-default-graph-trig.trig rename to examples/example-083-Using-graph-to-explicitly-express-the-default-graph-trig.trig diff --git a/examples/example-083-Context-needs-to-be-duplicated-if-graph-is-not-used-expanded.jsonld b/examples/example-084-Context-needs-to-be-duplicated-if-graph-is-not-used-expanded.jsonld similarity index 100% rename from examples/example-083-Context-needs-to-be-duplicated-if-graph-is-not-used-expanded.jsonld rename to examples/example-084-Context-needs-to-be-duplicated-if-graph-is-not-used-expanded.jsonld diff --git a/examples/example-083-Context-needs-to-be-duplicated-if-graph-is-not-used-original.jsonld b/examples/example-084-Context-needs-to-be-duplicated-if-graph-is-not-used-original.jsonld similarity index 100% rename from examples/example-083-Context-needs-to-be-duplicated-if-graph-is-not-used-original.jsonld rename to examples/example-084-Context-needs-to-be-duplicated-if-graph-is-not-used-original.jsonld diff --git a/examples/example-083-Context-needs-to-be-duplicated-if-graph-is-not-used-statements.table b/examples/example-084-Context-needs-to-be-duplicated-if-graph-is-not-used-statements.table similarity index 100% rename from examples/example-083-Context-needs-to-be-duplicated-if-graph-is-not-used-statements.table rename to examples/example-084-Context-needs-to-be-duplicated-if-graph-is-not-used-statements.table diff --git a/examples/example-083-Context-needs-to-be-duplicated-if-graph-is-not-used-trig.trig b/examples/example-084-Context-needs-to-be-duplicated-if-graph-is-not-used-trig.trig similarity index 100% rename from examples/example-083-Context-needs-to-be-duplicated-if-graph-is-not-used-trig.trig rename to examples/example-084-Context-needs-to-be-duplicated-if-graph-is-not-used-trig.trig diff --git a/examples/example-084-Implicitly-named-graph-expanded.jsonld b/examples/example-085-Implicitly-named-graph-expanded.jsonld similarity index 100% rename from examples/example-084-Implicitly-named-graph-expanded.jsonld rename to examples/example-085-Implicitly-named-graph-expanded.jsonld diff --git a/examples/example-084-Implicitly-named-graph-original.jsonld b/examples/example-085-Implicitly-named-graph-original.jsonld similarity index 100% rename from examples/example-084-Implicitly-named-graph-original.jsonld rename to examples/example-085-Implicitly-named-graph-original.jsonld diff --git a/examples/example-084-Implicitly-named-graph-statements.table b/examples/example-085-Implicitly-named-graph-statements.table similarity index 100% rename from examples/example-084-Implicitly-named-graph-statements.table rename to examples/example-085-Implicitly-named-graph-statements.table diff --git a/examples/example-084-Implicitly-named-graph-trig.trig b/examples/example-085-Implicitly-named-graph-trig.trig similarity index 100% rename from examples/example-084-Implicitly-named-graph-trig.trig rename to examples/example-085-Implicitly-named-graph-trig.trig diff --git a/examples/example-085-Indexing-graph-data-in-JSON-LD-expanded.jsonld b/examples/example-086-Indexing-graph-data-in-JSON-LD-expanded.jsonld similarity index 100% rename from examples/example-085-Indexing-graph-data-in-JSON-LD-expanded.jsonld rename to examples/example-086-Indexing-graph-data-in-JSON-LD-expanded.jsonld diff --git a/examples/example-085-Indexing-graph-data-in-JSON-LD-original.jsonld b/examples/example-086-Indexing-graph-data-in-JSON-LD-original.jsonld similarity index 100% rename from examples/example-085-Indexing-graph-data-in-JSON-LD-original.jsonld rename to examples/example-086-Indexing-graph-data-in-JSON-LD-original.jsonld diff --git a/examples/example-085-Indexing-graph-data-in-JSON-LD-statements.table b/examples/example-086-Indexing-graph-data-in-JSON-LD-statements.table similarity index 100% rename from examples/example-085-Indexing-graph-data-in-JSON-LD-statements.table rename to examples/example-086-Indexing-graph-data-in-JSON-LD-statements.table diff --git a/examples/example-085-Indexing-graph-data-in-JSON-LD-trig.trig b/examples/example-086-Indexing-graph-data-in-JSON-LD-trig.trig similarity index 100% rename from examples/example-085-Indexing-graph-data-in-JSON-LD-trig.trig rename to examples/example-086-Indexing-graph-data-in-JSON-LD-trig.trig diff --git a/examples/example-086-Indexing-graphs-using-none-for-no-index-expanded.jsonld b/examples/example-087-Indexing-graphs-using-none-for-no-index-expanded.jsonld similarity index 100% rename from examples/example-086-Indexing-graphs-using-none-for-no-index-expanded.jsonld rename to examples/example-087-Indexing-graphs-using-none-for-no-index-expanded.jsonld diff --git a/examples/example-086-Indexing-graphs-using-none-for-no-index-original.jsonld b/examples/example-087-Indexing-graphs-using-none-for-no-index-original.jsonld similarity index 100% rename from examples/example-086-Indexing-graphs-using-none-for-no-index-original.jsonld rename to examples/example-087-Indexing-graphs-using-none-for-no-index-original.jsonld diff --git a/examples/example-086-Indexing-graphs-using-none-for-no-index-statements.table b/examples/example-087-Indexing-graphs-using-none-for-no-index-statements.table similarity index 100% rename from examples/example-086-Indexing-graphs-using-none-for-no-index-statements.table rename to examples/example-087-Indexing-graphs-using-none-for-no-index-statements.table diff --git a/examples/example-086-Indexing-graphs-using-none-for-no-index-trig.trig b/examples/example-087-Indexing-graphs-using-none-for-no-index-trig.trig similarity index 100% rename from examples/example-086-Indexing-graphs-using-none-for-no-index-trig.trig rename to examples/example-087-Indexing-graphs-using-none-for-no-index-trig.trig diff --git a/examples/example-087-Referencing-named-graphs-using-an-id-map-expanded.jsonld b/examples/example-088-Referencing-named-graphs-using-an-id-map-expanded.jsonld similarity index 100% rename from examples/example-087-Referencing-named-graphs-using-an-id-map-expanded.jsonld rename to examples/example-088-Referencing-named-graphs-using-an-id-map-expanded.jsonld diff --git a/examples/example-087-Referencing-named-graphs-using-an-id-map-original.jsonld b/examples/example-088-Referencing-named-graphs-using-an-id-map-original.jsonld similarity index 100% rename from examples/example-087-Referencing-named-graphs-using-an-id-map-original.jsonld rename to examples/example-088-Referencing-named-graphs-using-an-id-map-original.jsonld diff --git a/examples/example-087-Referencing-named-graphs-using-an-id-map-statements.table b/examples/example-088-Referencing-named-graphs-using-an-id-map-statements.table similarity index 100% rename from examples/example-087-Referencing-named-graphs-using-an-id-map-statements.table rename to examples/example-088-Referencing-named-graphs-using-an-id-map-statements.table diff --git a/examples/example-087-Referencing-named-graphs-using-an-id-map-trig.trig b/examples/example-088-Referencing-named-graphs-using-an-id-map-trig.trig similarity index 100% rename from examples/example-087-Referencing-named-graphs-using-an-id-map-trig.trig rename to examples/example-088-Referencing-named-graphs-using-an-id-map-trig.trig diff --git a/examples/example-088-Referencing-named-graphs-using-an-id-map-with-none-expanded.jsonld b/examples/example-089-Referencing-named-graphs-using-an-id-map-with-none-expanded.jsonld similarity index 100% rename from examples/example-088-Referencing-named-graphs-using-an-id-map-with-none-expanded.jsonld rename to examples/example-089-Referencing-named-graphs-using-an-id-map-with-none-expanded.jsonld diff --git a/examples/example-088-Referencing-named-graphs-using-an-id-map-with-none-original.jsonld b/examples/example-089-Referencing-named-graphs-using-an-id-map-with-none-original.jsonld similarity index 100% rename from examples/example-088-Referencing-named-graphs-using-an-id-map-with-none-original.jsonld rename to examples/example-089-Referencing-named-graphs-using-an-id-map-with-none-original.jsonld diff --git a/examples/example-088-Referencing-named-graphs-using-an-id-map-with-none-statements.table b/examples/example-089-Referencing-named-graphs-using-an-id-map-with-none-statements.table similarity index 100% rename from examples/example-088-Referencing-named-graphs-using-an-id-map-with-none-statements.table rename to examples/example-089-Referencing-named-graphs-using-an-id-map-with-none-statements.table diff --git a/examples/example-088-Referencing-named-graphs-using-an-id-map-with-none-trig.trig b/examples/example-089-Referencing-named-graphs-using-an-id-map-with-none-trig.trig similarity index 100% rename from examples/example-088-Referencing-named-graphs-using-an-id-map-with-none-trig.trig rename to examples/example-089-Referencing-named-graphs-using-an-id-map-with-none-trig.trig diff --git a/examples/example-089-Sample-JSON-LD-document-to-be-expanded.jsonld b/examples/example-090-Sample-JSON-LD-document-to-be-expanded.jsonld similarity index 100% rename from examples/example-089-Sample-JSON-LD-document-to-be-expanded.jsonld rename to examples/example-090-Sample-JSON-LD-document-to-be-expanded.jsonld diff --git a/examples/example-090-Expanded-form-for-the-previous-example-expanded.jsonld b/examples/example-091-Expanded-form-for-the-previous-example-expanded.jsonld similarity index 100% rename from examples/example-090-Expanded-form-for-the-previous-example-expanded.jsonld rename to examples/example-091-Expanded-form-for-the-previous-example-expanded.jsonld diff --git a/examples/example-090-Expanded-form-for-the-previous-example-statements.table b/examples/example-091-Expanded-form-for-the-previous-example-statements.table similarity index 100% rename from examples/example-090-Expanded-form-for-the-previous-example-statements.table rename to examples/example-091-Expanded-form-for-the-previous-example-statements.table diff --git a/examples/example-090-Expanded-form-for-the-previous-example-turtle.ttl b/examples/example-091-Expanded-form-for-the-previous-example-turtle.ttl similarity index 100% rename from examples/example-090-Expanded-form-for-the-previous-example-turtle.ttl rename to examples/example-091-Expanded-form-for-the-previous-example-turtle.ttl diff --git a/examples/example-091-Sample-expanded-JSON-LD-document.jsonld b/examples/example-092-Sample-expanded-JSON-LD-document.jsonld similarity index 100% rename from examples/example-091-Sample-expanded-JSON-LD-document.jsonld rename to examples/example-092-Sample-expanded-JSON-LD-document.jsonld diff --git a/examples/example-092-Sample-context.jsonld b/examples/example-093-Sample-context.jsonld similarity index 100% rename from examples/example-092-Sample-context.jsonld rename to examples/example-093-Sample-context.jsonld diff --git a/examples/example-093-Compact-form-of-the-sample-document-once-sample-context-has-been-applied-original.jsonld b/examples/example-094-Compact-form-of-the-sample-document-once-sample-context-has-been-applied-original.jsonld similarity index 100% rename from examples/example-093-Compact-form-of-the-sample-document-once-sample-context-has-been-applied-original.jsonld rename to examples/example-094-Compact-form-of-the-sample-document-once-sample-context-has-been-applied-original.jsonld diff --git a/examples/example-094-Sample-JSON-LD-document-to-be-flattened.jsonld b/examples/example-095-Sample-JSON-LD-document-to-be-flattened.jsonld similarity index 100% rename from examples/example-094-Sample-JSON-LD-document-to-be-flattened.jsonld rename to examples/example-095-Sample-JSON-LD-document-to-be-flattened.jsonld diff --git a/examples/example-095-Flattened-and-compacted-form-for-the-previous-example-original.jsonld b/examples/example-096-Flattened-and-compacted-form-for-the-previous-example-original.jsonld similarity index 100% rename from examples/example-095-Flattened-and-compacted-form-for-the-previous-example-original.jsonld rename to examples/example-096-Flattened-and-compacted-form-for-the-previous-example-original.jsonld diff --git a/examples/example-096-Sample-library-frame.jsonld b/examples/example-097-Sample-library-frame.jsonld similarity index 100% rename from examples/example-096-Sample-library-frame.jsonld rename to examples/example-097-Sample-library-frame.jsonld diff --git a/examples/example-097-Flattened-library-objects.jsonld b/examples/example-098-Flattened-library-objects.jsonld similarity index 100% rename from examples/example-097-Flattened-library-objects.jsonld rename to examples/example-098-Flattened-library-objects.jsonld diff --git a/examples/example-098-Framed-library-objects-original.jsonld b/examples/example-099-Framed-library-objects-original.jsonld similarity index 100% rename from examples/example-098-Framed-library-objects-original.jsonld rename to examples/example-099-Framed-library-objects-original.jsonld diff --git a/examples/example-103-Linked-Data-Dataset-compacted.jsonld b/examples/example-103-Linked-Data-Dataset-compacted.jsonld new file mode 100644 index 00000000..144fd61e --- /dev/null +++ b/examples/example-103-Linked-Data-Dataset-compacted.jsonld @@ -0,0 +1,33 @@ +{ + "@context": [ + "http://schema.org/", + {"@base": "http://example.com/"} + ], + "@graph": [{ + "@id": "people/alice", + "gender": [ + {"@value": "weiblich", "@language": "de"}, + {"@value": "female", "@language": "en"} + ], + "knows": {"@id": "people/bob"}, + "name": "Alice" + }, { + "@id": "graphs/1", + "@graph": { + "@id": "people/alice", + "parent": { + "@id": "people/bob", + "name": "Bob" + } + } + }, { + "@id": "graphs/2", + "@graph": { + "@id": "people/bob", + "sibling": { + "name": "Mary", + "sibling": {"@id": "people/bob"} + } + } + }] +} \ No newline at end of file diff --git a/examples/example-103-Linked-Data-Dataset-expanded.jsonld b/examples/example-103-Linked-Data-Dataset-expanded.jsonld new file mode 100644 index 00000000..5e9a1731 --- /dev/null +++ b/examples/example-103-Linked-Data-Dataset-expanded.jsonld @@ -0,0 +1,31 @@ +[{ + "@id": "http://example.com/people/alice", + "http://schema.org/name": [{"@value": "Alice"}], + "http://schema.org/gender": [ + {"@value": "weiblich","@language": "de"}, + {"@value": "female","@language": "en"} + ], + "http://schema.org/knows": [ + {"@id": "http://example.com/people/bob"} + ] +}, { + "@id": "http://example.com/graphs/1", + "@graph": [{ + "@id": "http://example.com/people/alice", + "http://schema.org/parent": [{ + "@id": "http://example.com/people/bob", + "http://schema.org/name": [{"@value": "Bob"}] + }] + }] +}, { + "@id": "http://example.com/graphs/2", + "@graph": [{ + "@id": "http://example.com/people/bob", + "http://schema.org/sibling": [{ + "http://schema.org/name": [{"@value": "Mary"}], + "http://schema.org/sibling": [ + {"@id": "http://example.com/people/bob"} + ] + }] + }] +}] \ No newline at end of file diff --git a/examples/example-103-Linked-Data-Dataset-statements.table b/examples/example-103-Linked-Data-Dataset-statements.table new file mode 100644 index 00000000..42b4b04a --- /dev/null +++ b/examples/example-103-Linked-Data-Dataset-statements.table @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
GraphSubjectPropertyValueLanguage
 http://example.com/people/aliceschema:nameAlice
 http://example.com/people/aliceschema:genderweiblichde
 http://example.com/people/aliceschema:genderfemaleen
 http://example.com/people/aliceschema:knowshttp://example.com/people/bob
http://example.com/graphs/1http://example.com/people/bobschema:nameBob
http://example.com/graphs/1http://example.com/people/aliceschema:parenthttp://example.com/people/bob
http://example.com/graphs/2http://example.com/people/bobschema:sibling_:b0
http://example.com/graphs/2_:b0schema:nameMary
http://example.com/graphs/2_:b0schema:siblinghttp://example.com/people/bob
\ No newline at end of file diff --git a/examples/example-103-Linked-Data-Dataset-trig.trig b/examples/example-103-Linked-Data-Dataset-trig.trig new file mode 100644 index 00000000..f94ba9ab --- /dev/null +++ b/examples/example-103-Linked-Data-Dataset-trig.trig @@ -0,0 +1,14 @@ +@prefix schema: . + schema:knows ; + schema:name "Alice"; + schema:gender "weiblich"@de, "female"@en . + { + schema:parent . + schema:name "Bob" . +} + { + schema:sibling [ + schema:name "Mary"; + schema:sibling + ] . +} \ No newline at end of file diff --git a/examples/example-102-Sample-JSON-LD-document.jsonld b/examples/example-104-Sample-JSON-LD-document.jsonld similarity index 100% rename from examples/example-102-Sample-JSON-LD-document.jsonld rename to examples/example-104-Sample-JSON-LD-document.jsonld diff --git a/examples/example-103-Flattened-and-expanded-form-for-the-previous-example.jsonld b/examples/example-105-Flattened-and-expanded-form-for-the-previous-example.jsonld similarity index 100% rename from examples/example-103-Flattened-and-expanded-form-for-the-previous-example.jsonld rename to examples/example-105-Flattened-and-expanded-form-for-the-previous-example.jsonld diff --git a/examples/example-104-Turtle-representation-of-expanded-flattened-document.ttl b/examples/example-106-Turtle-representation-of-expanded-flattened-document.ttl similarity index 100% rename from examples/example-104-Turtle-representation-of-expanded-flattened-document.ttl rename to examples/example-106-Turtle-representation-of-expanded-flattened-document.ttl diff --git a/examples/example-105-A-set-of-statements-serialized-in-Turtle.ttl b/examples/example-107-A-set-of-statements-serialized-in-Turtle.ttl similarity index 100% rename from examples/example-105-A-set-of-statements-serialized-in-Turtle.ttl rename to examples/example-107-A-set-of-statements-serialized-in-Turtle.ttl diff --git a/examples/example-106-The-same-set-of-statements-serialized-in-JSON-LD.jsonld b/examples/example-108-The-same-set-of-statements-serialized-in-JSON-LD.jsonld similarity index 100% rename from examples/example-106-The-same-set-of-statements-serialized-in-JSON-LD.jsonld rename to examples/example-108-The-same-set-of-statements-serialized-in-JSON-LD.jsonld diff --git a/examples/example-107-Embedding-in-Turtle.ttl b/examples/example-109-Embedding-in-Turtle.ttl similarity index 100% rename from examples/example-107-Embedding-in-Turtle.ttl rename to examples/example-109-Embedding-in-Turtle.ttl diff --git a/examples/example-108-Same-embedding-example-in-JSON-LD.jsonld b/examples/example-110-Same-embedding-example-in-JSON-LD.jsonld similarity index 100% rename from examples/example-108-Same-embedding-example-in-JSON-LD.jsonld rename to examples/example-110-Same-embedding-example-in-JSON-LD.jsonld diff --git a/examples/example-109-JSON-LD-using-native-data-types-for-numbers-and-boolean-values.jsonld b/examples/example-111-JSON-LD-using-native-data-types-for-numbers-and-boolean-values.jsonld similarity index 100% rename from examples/example-109-JSON-LD-using-native-data-types-for-numbers-and-boolean-values.jsonld rename to examples/example-111-JSON-LD-using-native-data-types-for-numbers-and-boolean-values.jsonld diff --git a/examples/example-110-Same-example-in-Turtle-using-typed-literals.ttl b/examples/example-112-Same-example-in-Turtle-using-typed-literals.ttl similarity index 100% rename from examples/example-110-Same-example-in-Turtle-using-typed-literals.ttl rename to examples/example-112-Same-example-in-Turtle-using-typed-literals.ttl diff --git a/examples/example-111-A-list-of-values-in-Turtle.ttl b/examples/example-113-A-list-of-values-in-Turtle.ttl similarity index 100% rename from examples/example-111-A-list-of-values-in-Turtle.ttl rename to examples/example-113-A-list-of-values-in-Turtle.ttl diff --git a/examples/example-112-Same-example-with-a-list-of-values-in-JSON-LD.jsonld b/examples/example-114-Same-example-with-a-list-of-values-in-JSON-LD.jsonld similarity index 100% rename from examples/example-112-Same-example-with-a-list-of-values-in-JSON-LD.jsonld rename to examples/example-114-Same-example-with-a-list-of-values-in-JSON-LD.jsonld diff --git a/examples/example-113-RDFa-fragment-that-describes-three-people.html b/examples/example-115-RDFa-fragment-that-describes-three-people.html similarity index 100% rename from examples/example-113-RDFa-fragment-that-describes-three-people.html rename to examples/example-115-RDFa-fragment-that-describes-three-people.html diff --git a/examples/example-114-Same-description-in-JSON-LD-context-shared-among-node-objects-.jsonld b/examples/example-116-Same-description-in-JSON-LD-context-shared-among-node-objects-.jsonld similarity index 100% rename from examples/example-114-Same-description-in-JSON-LD-context-shared-among-node-objects-.jsonld rename to examples/example-116-Same-description-in-JSON-LD-context-shared-among-node-objects-.jsonld diff --git a/examples/example-115-HTML-that-describes-a-book-using-microdata.html b/examples/example-117-HTML-that-describes-a-book-using-microdata.html similarity index 100% rename from examples/example-115-HTML-that-describes-a-book-using-microdata.html rename to examples/example-117-HTML-that-describes-a-book-using-microdata.html diff --git a/examples/example-116-Same-book-description-in-JSON-LD-avoiding-contexts-.jsonld b/examples/example-118-Same-book-description-in-JSON-LD-avoiding-contexts-.jsonld similarity index 100% rename from examples/example-116-Same-book-description-in-JSON-LD-avoiding-contexts-.jsonld rename to examples/example-118-Same-book-description-in-JSON-LD-avoiding-contexts-.jsonld diff --git a/index.html b/index.html index 43954304..892a7678 100644 --- a/index.html +++ b/index.html @@ -2535,6 +2535,27 @@

Using the Document Base as the Default Vocabulary

keywords have been given the aliases url and a, respectively.

+

Other than for @type, properties of + expanded term definitions where the term is a keyword are be ignored.

+ +

When processing mode is set to json-ld-1.1, + @type may be used with an expanded term definition with @container set + to @set; no other members may be set within such an expanded term definition. + This is used by the Compaction algorithm to ensure that the values of @type (or an alias) + are always represented in an array.

+ +
+  
+  
+

Since keywords cannot be redefined, they can also not be aliased to other keywords.

@@ -8999,7 +9020,7 @@

Context Definitions

A context definition MUST be a dictionary whose keys MUST be either terms, compact IRIs, absolute IRIs, or one of the keywords @language, @base, - @vocab, or @version.

+ @type, @vocab, or @version.

If the context definition has an @language key, its value MUST have the lexical form described in [[!BCP47]] or be null.

@@ -9008,6 +9029,9 @@

Context Definitions

its value MUST be an absolute IRI, a relative IRI, or null.

+

If the context definition has an @type key, + its value MUST be a dictionary with the single member @container set to @set.

+

If the context definition has an @vocab key, its value MUST be a absolute IRI, a compact IRI, a blank node identifier, @@ -9840,14 +9864,18 @@

Changes since 1.0 Recommendation of 16 January 2014

a context. When this is set, vocabulary-relative IRIs, such as the keys of node objects, are expanded or compacted relative to the base IRI using string concatenation. -
  • Lists may now have items which are themselves lists.
  • +

    Additionally, see .

    Changes since JSON-LD Community Group Final Report

    • Lists may now have items which are themselves lists.
    • +
    • Values of @type, or an alais of @type, may now have their @container set to @set + to ensure that @type members are always represented as an array. This + also allows a term to be defined for @type, where the value MUST be a dictionary + with @container set to @set.
    diff --git a/yaml/example-032-Setting-container-set-on-type.yaml b/yaml/example-032-Setting-container-set-on-type.yaml new file mode 100644 index 00000000..cb8501bb --- /dev/null +++ b/yaml/example-032-Setting-container-set-on-type.yaml @@ -0,0 +1,8 @@ +Example 032: Setting @container: @set on @type +--- +"@context": + "@version": 1.1 + "@type": + "@container": "@set" +"@type": +- http:/example.org/type diff --git a/yaml/example-032-IRI-expansion-within-a-context.yaml b/yaml/example-033-IRI-expansion-within-a-context.yaml similarity index 84% rename from yaml/example-032-IRI-expansion-within-a-context.yaml rename to yaml/example-033-IRI-expansion-within-a-context.yaml index b0c6692c..7f55780d 100644 --- a/yaml/example-032-IRI-expansion-within-a-context.yaml +++ b/yaml/example-033-IRI-expansion-within-a-context.yaml @@ -1,4 +1,4 @@ -Example 032: IRI expansion within a context +Example 033: IRI expansion within a context --- "@context": xsd: http://www.w3.org/2001/XMLSchema# diff --git a/yaml/example-033-Using-a-term-to-define-the-IRI-of-another-term-within-a-context.yaml b/yaml/example-034-Using-a-term-to-define-the-IRI-of-another-term-within-a-context.yaml similarity index 78% rename from yaml/example-033-Using-a-term-to-define-the-IRI-of-another-term-within-a-context.yaml rename to yaml/example-034-Using-a-term-to-define-the-IRI-of-another-term-within-a-context.yaml index b5e56e1a..06813147 100644 --- a/yaml/example-033-Using-a-term-to-define-the-IRI-of-another-term-within-a-context.yaml +++ b/yaml/example-034-Using-a-term-to-define-the-IRI-of-another-term-within-a-context.yaml @@ -1,4 +1,4 @@ -Example 033: Using a term to define the IRI of another term within a context +Example 034: Using a term to define the IRI of another term within a context --- "@context": foaf: http://xmlns.com/foaf/0.1/ diff --git a/yaml/example-034-Using-a-compact-IRI-as-a-term.yaml b/yaml/example-035-Using-a-compact-IRI-as-a-term.yaml similarity index 80% rename from yaml/example-034-Using-a-compact-IRI-as-a-term.yaml rename to yaml/example-035-Using-a-compact-IRI-as-a-term.yaml index 8582e4a2..add10d3d 100644 --- a/yaml/example-034-Using-a-compact-IRI-as-a-term.yaml +++ b/yaml/example-035-Using-a-compact-IRI-as-a-term.yaml @@ -1,4 +1,4 @@ -Example 034: Using a compact IRI as a term +Example 035: Using a compact IRI as a term --- "@context": foaf: http://xmlns.com/foaf/0.1/ diff --git a/yaml/example-035-Associating-context-definitions-with-absolute-IRIs.yaml b/yaml/example-036-Associating-context-definitions-with-absolute-IRIs.yaml similarity index 77% rename from yaml/example-035-Associating-context-definitions-with-absolute-IRIs.yaml rename to yaml/example-036-Associating-context-definitions-with-absolute-IRIs.yaml index 1b4b66c5..319e3ef4 100644 --- a/yaml/example-035-Associating-context-definitions-with-absolute-IRIs.yaml +++ b/yaml/example-036-Associating-context-definitions-with-absolute-IRIs.yaml @@ -1,4 +1,4 @@ -Example 035: Associating context definitions with absolute IRIs +Example 036: Associating context definitions with absolute IRIs --- "@context": foaf: http://xmlns.com/foaf/0.1/ diff --git a/yaml/example-037-Defining-an-context-within-a-term-definition-expanded.yaml b/yaml/example-038-Defining-an-context-within-a-term-definition-expanded.yaml similarity index 80% rename from yaml/example-037-Defining-an-context-within-a-term-definition-expanded.yaml rename to yaml/example-038-Defining-an-context-within-a-term-definition-expanded.yaml index cfa1d605..3b650647 100644 --- a/yaml/example-037-Defining-an-context-within-a-term-definition-expanded.yaml +++ b/yaml/example-038-Defining-an-context-within-a-term-definition-expanded.yaml @@ -1,4 +1,4 @@ -Example 037: Defining an @context within a term definition-expanded +Example 038: Defining an @context within a term definition-expanded --- - http://xmlns.com/foaf/0.1/interest: - "@id": https://www.w3.org/TR/json-ld11/ diff --git a/yaml/example-037-Defining-an-context-within-a-term-definition-original.yaml b/yaml/example-038-Defining-an-context-within-a-term-definition-original.yaml similarity index 82% rename from yaml/example-037-Defining-an-context-within-a-term-definition-original.yaml rename to yaml/example-038-Defining-an-context-within-a-term-definition-original.yaml index 034c243d..609d958e 100644 --- a/yaml/example-037-Defining-an-context-within-a-term-definition-original.yaml +++ b/yaml/example-038-Defining-an-context-within-a-term-definition-original.yaml @@ -1,4 +1,4 @@ -Example 037: Defining an @context within a term definition-original +Example 038: Defining an @context within a term definition-original --- "@context": "@version": 1.1 diff --git a/yaml/example-038-Defining-an-context-within-a-term-definition-used-on-type-expanded.yaml b/yaml/example-039-Defining-an-context-within-a-term-definition-used-on-type-expanded.yaml similarity index 85% rename from yaml/example-038-Defining-an-context-within-a-term-definition-used-on-type-expanded.yaml rename to yaml/example-039-Defining-an-context-within-a-term-definition-used-on-type-expanded.yaml index a9270a89..ae1659f1 100644 --- a/yaml/example-038-Defining-an-context-within-a-term-definition-used-on-type-expanded.yaml +++ b/yaml/example-039-Defining-an-context-within-a-term-definition-used-on-type-expanded.yaml @@ -1,4 +1,4 @@ -Example 038: Defining an @context within a term definition used on @type-expanded +Example 039: Defining an @context within a term definition used on @type-expanded --- - "@type": - http://schema.org/Person diff --git a/yaml/example-038-Defining-an-context-within-a-term-definition-used-on-type-original.yaml b/yaml/example-039-Defining-an-context-within-a-term-definition-used-on-type-original.yaml similarity index 86% rename from yaml/example-038-Defining-an-context-within-a-term-definition-used-on-type-original.yaml rename to yaml/example-039-Defining-an-context-within-a-term-definition-used-on-type-original.yaml index 4a4ebd39..4872c928 100644 --- a/yaml/example-038-Defining-an-context-within-a-term-definition-used-on-type-original.yaml +++ b/yaml/example-039-Defining-an-context-within-a-term-definition-used-on-type-original.yaml @@ -1,4 +1,4 @@ -Example 038: Defining an @context within a term definition used on @type-original +Example 039: Defining an @context within a term definition used on @type-original --- "@context": "@version": 1.1 diff --git a/yaml/example-039-Expanded-term-definition-with-type-coercion-expanded.yaml b/yaml/example-040-Expanded-term-definition-with-type-coercion-expanded.yaml similarity index 73% rename from yaml/example-039-Expanded-term-definition-with-type-coercion-expanded.yaml rename to yaml/example-040-Expanded-term-definition-with-type-coercion-expanded.yaml index a940fed0..397a0ff7 100644 --- a/yaml/example-039-Expanded-term-definition-with-type-coercion-expanded.yaml +++ b/yaml/example-040-Expanded-term-definition-with-type-coercion-expanded.yaml @@ -1,4 +1,4 @@ -Example 039: Expanded term definition with type coercion-expanded +Example 040: Expanded term definition with type coercion-expanded --- - "@id": http://example.com/docs/1 http://purl.org/dc/terms/modified: diff --git a/yaml/example-039-Expanded-term-definition-with-type-coercion-original.yaml b/yaml/example-040-Expanded-term-definition-with-type-coercion-original.yaml similarity index 75% rename from yaml/example-039-Expanded-term-definition-with-type-coercion-original.yaml rename to yaml/example-040-Expanded-term-definition-with-type-coercion-original.yaml index 02ff7c5a..78673c0a 100644 --- a/yaml/example-039-Expanded-term-definition-with-type-coercion-original.yaml +++ b/yaml/example-040-Expanded-term-definition-with-type-coercion-original.yaml @@ -1,4 +1,4 @@ -Example 039: Expanded term definition with type coercion-original +Example 040: Expanded term definition with type coercion-original --- "@context": modified: diff --git a/yaml/example-040-Expanded-value-with-type-expanded.yaml b/yaml/example-041-Expanded-value-with-type-expanded.yaml similarity index 74% rename from yaml/example-040-Expanded-value-with-type-expanded.yaml rename to yaml/example-041-Expanded-value-with-type-expanded.yaml index 7ae1f1f3..6dec709b 100644 --- a/yaml/example-040-Expanded-value-with-type-expanded.yaml +++ b/yaml/example-041-Expanded-value-with-type-expanded.yaml @@ -1,4 +1,4 @@ -Example 040: Expanded value with type-expanded +Example 041: Expanded value with type-expanded --- - http://purl.org/dc/terms/modified: - "@type": http://www.w3.org/2001/XMLSchema#dateTime diff --git a/yaml/example-040-Expanded-value-with-type-original.yaml b/yaml/example-041-Expanded-value-with-type-original.yaml similarity index 78% rename from yaml/example-040-Expanded-value-with-type-original.yaml rename to yaml/example-041-Expanded-value-with-type-original.yaml index d5ae3880..82261f5c 100644 --- a/yaml/example-040-Expanded-value-with-type-original.yaml +++ b/yaml/example-041-Expanded-value-with-type-original.yaml @@ -1,4 +1,4 @@ -Example 040: Expanded value with type-original +Example 041: Expanded value with type-original --- "@context": modified: diff --git a/yaml/example-041-Example-demonstrating-the-context-sensitivity-for-type.yaml b/yaml/example-042-Example-demonstrating-the-context-sensitivity-for-type.yaml similarity index 78% rename from yaml/example-041-Example-demonstrating-the-context-sensitivity-for-type.yaml rename to yaml/example-042-Example-demonstrating-the-context-sensitivity-for-type.yaml index b486f316..f5989503 100644 --- a/yaml/example-041-Example-demonstrating-the-context-sensitivity-for-type.yaml +++ b/yaml/example-042-Example-demonstrating-the-context-sensitivity-for-type.yaml @@ -1,4 +1,4 @@ -Example 041: Example demonstrating the context-sensitivity for @type +Example 042: Example demonstrating the context-sensitivity for @type --- "@id": http://example.org/posts#TripToWestVirginia "@type": http://schema.org/BlogPosting diff --git a/yaml/example-043-Expanded-term-definition-with-types-expanded.yaml b/yaml/example-044-Expanded-term-definition-with-types-expanded.yaml similarity index 85% rename from yaml/example-043-Expanded-term-definition-with-types-expanded.yaml rename to yaml/example-044-Expanded-term-definition-with-types-expanded.yaml index bc697a23..f2e1e7ef 100644 --- a/yaml/example-043-Expanded-term-definition-with-types-expanded.yaml +++ b/yaml/example-044-Expanded-term-definition-with-types-expanded.yaml @@ -1,4 +1,4 @@ -Example 043: Expanded term definition with types-expanded +Example 044: Expanded term definition with types-expanded --- - "@id": http://example.com/people#john http://xmlns.com/foaf/0.1/name: diff --git a/yaml/example-043-Expanded-term-definition-with-types-original.yaml b/yaml/example-044-Expanded-term-definition-with-types-original.yaml similarity index 86% rename from yaml/example-043-Expanded-term-definition-with-types-original.yaml rename to yaml/example-044-Expanded-term-definition-with-types-original.yaml index 6b419d85..15267984 100644 --- a/yaml/example-043-Expanded-term-definition-with-types-original.yaml +++ b/yaml/example-044-Expanded-term-definition-with-types-original.yaml @@ -1,4 +1,4 @@ -Example 043: Expanded term definition with types-original +Example 044: Expanded term definition with types-original --- "@context": xsd: http://www.w3.org/2001/XMLSchema# diff --git a/yaml/example-044-Term-definitions-using-compact-and-absolute-IRIs-expanded.yaml b/yaml/example-045-Term-definitions-using-compact-and-absolute-IRIs-expanded.yaml similarity index 82% rename from yaml/example-044-Term-definitions-using-compact-and-absolute-IRIs-expanded.yaml rename to yaml/example-045-Term-definitions-using-compact-and-absolute-IRIs-expanded.yaml index 9bbdbe48..afbf6b7b 100644 --- a/yaml/example-044-Term-definitions-using-compact-and-absolute-IRIs-expanded.yaml +++ b/yaml/example-045-Term-definitions-using-compact-and-absolute-IRIs-expanded.yaml @@ -1,4 +1,4 @@ -Example 044: Term definitions using compact and absolute IRIs-expanded +Example 045: Term definitions using compact and absolute IRIs-expanded --- - http://xmlns.com/foaf/0.1/age: - "@type": http://www.w3.org/2001/XMLSchema#integer diff --git a/yaml/example-044-Term-definitions-using-compact-and-absolute-IRIs-original.yaml b/yaml/example-045-Term-definitions-using-compact-and-absolute-IRIs-original.yaml similarity index 85% rename from yaml/example-044-Term-definitions-using-compact-and-absolute-IRIs-original.yaml rename to yaml/example-045-Term-definitions-using-compact-and-absolute-IRIs-original.yaml index 33312c53..1da0b604 100644 --- a/yaml/example-044-Term-definitions-using-compact-and-absolute-IRIs-original.yaml +++ b/yaml/example-045-Term-definitions-using-compact-and-absolute-IRIs-original.yaml @@ -1,4 +1,4 @@ -Example 044: Term definitions using compact and absolute IRIs-original +Example 045: Term definitions using compact and absolute IRIs-original --- "@context": xsd: http://www.w3.org/2001/XMLSchema# diff --git a/yaml/example-045-Setting-the-default-language-of-a-JSON-LD-document-expanded.yaml b/yaml/example-046-Setting-the-default-language-of-a-JSON-LD-document-expanded.yaml similarity index 71% rename from yaml/example-045-Setting-the-default-language-of-a-JSON-LD-document-expanded.yaml rename to yaml/example-046-Setting-the-default-language-of-a-JSON-LD-document-expanded.yaml index 8dcc4e5d..73014811 100644 --- a/yaml/example-045-Setting-the-default-language-of-a-JSON-LD-document-expanded.yaml +++ b/yaml/example-046-Setting-the-default-language-of-a-JSON-LD-document-expanded.yaml @@ -1,4 +1,4 @@ -Example 045: Setting the default language of a JSON-LD document-expanded +Example 046: Setting the default language of a JSON-LD document-expanded --- - http://example.org/name: - "@value": 花澄 diff --git a/yaml/example-045-Setting-the-default-language-of-a-JSON-LD-document-original.yaml b/yaml/example-046-Setting-the-default-language-of-a-JSON-LD-document-original.yaml similarity index 70% rename from yaml/example-045-Setting-the-default-language-of-a-JSON-LD-document-original.yaml rename to yaml/example-046-Setting-the-default-language-of-a-JSON-LD-document-original.yaml index 3299086c..849427c8 100644 --- a/yaml/example-045-Setting-the-default-language-of-a-JSON-LD-document-original.yaml +++ b/yaml/example-046-Setting-the-default-language-of-a-JSON-LD-document-original.yaml @@ -1,4 +1,4 @@ -Example 045: Setting the default language of a JSON-LD document-original +Example 046: Setting the default language of a JSON-LD document-original --- "@context": name: http://example.org/name diff --git a/yaml/example-046-Clearing-default-language.yaml b/yaml/example-047-Clearing-default-language.yaml similarity index 73% rename from yaml/example-046-Clearing-default-language.yaml rename to yaml/example-047-Clearing-default-language.yaml index 16fa8042..2260c78c 100644 --- a/yaml/example-046-Clearing-default-language.yaml +++ b/yaml/example-047-Clearing-default-language.yaml @@ -1,4 +1,4 @@ -Example 046: Clearing default language +Example 047: Clearing default language --- "@context": "@language": ja diff --git a/yaml/example-047-Expanded-term-definition-with-language.yaml b/yaml/example-048-Expanded-term-definition-with-language.yaml similarity index 87% rename from yaml/example-047-Expanded-term-definition-with-language.yaml rename to yaml/example-048-Expanded-term-definition-with-language.yaml index 1ba6579c..e536b0a8 100644 --- a/yaml/example-047-Expanded-term-definition-with-language.yaml +++ b/yaml/example-048-Expanded-term-definition-with-language.yaml @@ -1,4 +1,4 @@ -Example 047: Expanded term definition with language +Example 048: Expanded term definition with language --- "@context": ex: http://example.com/vocab/ diff --git a/yaml/example-048-Language-map-expressing-a-property-in-three-languages.yaml b/yaml/example-049-Language-map-expressing-a-property-in-three-languages.yaml similarity index 71% rename from yaml/example-048-Language-map-expressing-a-property-in-three-languages.yaml rename to yaml/example-049-Language-map-expressing-a-property-in-three-languages.yaml index b0dbb32f..85e2321b 100644 --- a/yaml/example-048-Language-map-expressing-a-property-in-three-languages.yaml +++ b/yaml/example-049-Language-map-expressing-a-property-in-three-languages.yaml @@ -1,4 +1,4 @@ -Example 048: Language map expressing a property in three languages +Example 049: Language map expressing a property in three languages --- "@context": occupation: diff --git a/yaml/example-049-Overriding-default-language-using-an-expanded-value.yaml b/yaml/example-050-Overriding-default-language-using-an-expanded-value.yaml similarity index 60% rename from yaml/example-049-Overriding-default-language-using-an-expanded-value.yaml rename to yaml/example-050-Overriding-default-language-using-an-expanded-value.yaml index 1ceab2a0..3fc374ad 100644 --- a/yaml/example-049-Overriding-default-language-using-an-expanded-value.yaml +++ b/yaml/example-050-Overriding-default-language-using-an-expanded-value.yaml @@ -1,4 +1,4 @@ -Example 049: Overriding default language using an expanded value +Example 050: Overriding default language using an expanded value --- "@context": "@language": ja diff --git a/yaml/example-050-Removing-language-information-using-an-expanded-value.yaml b/yaml/example-051-Removing-language-information-using-an-expanded-value.yaml similarity index 67% rename from yaml/example-050-Removing-language-information-using-an-expanded-value.yaml rename to yaml/example-051-Removing-language-information-using-an-expanded-value.yaml index 0969c32a..86d9b3de 100644 --- a/yaml/example-050-Removing-language-information-using-an-expanded-value.yaml +++ b/yaml/example-051-Removing-language-information-using-an-expanded-value.yaml @@ -1,4 +1,4 @@ -Example 050: Removing language information using an expanded value +Example 051: Removing language information using an expanded value --- "@context": "@language": ja diff --git a/yaml/example-051-Multiple-values-with-no-inherent-order-expanded.yaml b/yaml/example-052-Multiple-values-with-no-inherent-order-expanded.yaml similarity index 68% rename from yaml/example-051-Multiple-values-with-no-inherent-order-expanded.yaml rename to yaml/example-052-Multiple-values-with-no-inherent-order-expanded.yaml index bd3e26b6..d3a1392e 100644 --- a/yaml/example-051-Multiple-values-with-no-inherent-order-expanded.yaml +++ b/yaml/example-052-Multiple-values-with-no-inherent-order-expanded.yaml @@ -1,4 +1,4 @@ -Example 051: Multiple values with no inherent order-expanded +Example 052: Multiple values with no inherent order-expanded --- - "@id": http://example.org/people#joebob http://xmlns.com/foaf/0.1/nick: diff --git a/yaml/example-051-Multiple-values-with-no-inherent-order-original.yaml b/yaml/example-052-Multiple-values-with-no-inherent-order-original.yaml similarity index 66% rename from yaml/example-051-Multiple-values-with-no-inherent-order-original.yaml rename to yaml/example-052-Multiple-values-with-no-inherent-order-original.yaml index c8521ffc..4cb839ad 100644 --- a/yaml/example-051-Multiple-values-with-no-inherent-order-original.yaml +++ b/yaml/example-052-Multiple-values-with-no-inherent-order-original.yaml @@ -1,4 +1,4 @@ -Example 051: Multiple values with no inherent order-original +Example 052: Multiple values with no inherent order-original --- "@context": foaf: http://xmlns.com/foaf/0.1/ diff --git a/yaml/example-052-Using-an-expanded-form-to-set-multiple-values-expanded.yaml b/yaml/example-053-Using-an-expanded-form-to-set-multiple-values-expanded.yaml similarity index 72% rename from yaml/example-052-Using-an-expanded-form-to-set-multiple-values-expanded.yaml rename to yaml/example-053-Using-an-expanded-form-to-set-multiple-values-expanded.yaml index f2ccbb05..cbadfa26 100644 --- a/yaml/example-052-Using-an-expanded-form-to-set-multiple-values-expanded.yaml +++ b/yaml/example-053-Using-an-expanded-form-to-set-multiple-values-expanded.yaml @@ -1,4 +1,4 @@ -Example 052: Using an expanded form to set multiple values-expanded +Example 053: Using an expanded form to set multiple values-expanded --- - "@id": http://example.org/articles/8 http://purl.org/dc/terms/title: diff --git a/yaml/example-052-Using-an-expanded-form-to-set-multiple-values-original.yaml b/yaml/example-053-Using-an-expanded-form-to-set-multiple-values-original.yaml similarity index 73% rename from yaml/example-052-Using-an-expanded-form-to-set-multiple-values-original.yaml rename to yaml/example-053-Using-an-expanded-form-to-set-multiple-values-original.yaml index af6a7402..a0273ebe 100644 --- a/yaml/example-052-Using-an-expanded-form-to-set-multiple-values-original.yaml +++ b/yaml/example-053-Using-an-expanded-form-to-set-multiple-values-original.yaml @@ -1,4 +1,4 @@ -Example 052: Using an expanded form to set multiple values-original +Example 053: Using an expanded form to set multiple values-original --- "@context": dc: http://purl.org/dc/terms/ diff --git a/yaml/example-053-Multiple-array-values-of-different-types-expanded.yaml b/yaml/example-054-Multiple-array-values-of-different-types-expanded.yaml similarity index 77% rename from yaml/example-053-Multiple-array-values-of-different-types-expanded.yaml rename to yaml/example-054-Multiple-array-values-of-different-types-expanded.yaml index c1c03e29..0ee173cf 100644 --- a/yaml/example-053-Multiple-array-values-of-different-types-expanded.yaml +++ b/yaml/example-054-Multiple-array-values-of-different-types-expanded.yaml @@ -1,4 +1,4 @@ -Example 053: Multiple array values of different types-expanded +Example 054: Multiple array values of different types-expanded --- - "@id": http://example.org/people#michael http://schema.org/name: diff --git a/yaml/example-053-Multiple-array-values-of-different-types-original.yaml b/yaml/example-054-Multiple-array-values-of-different-types-original.yaml similarity index 77% rename from yaml/example-053-Multiple-array-values-of-different-types-original.yaml rename to yaml/example-054-Multiple-array-values-of-different-types-original.yaml index 9b951dcc..72494ac1 100644 --- a/yaml/example-053-Multiple-array-values-of-different-types-original.yaml +++ b/yaml/example-054-Multiple-array-values-of-different-types-original.yaml @@ -1,4 +1,4 @@ -Example 053: Multiple array values of different types-original +Example 054: Multiple array values of different types-original --- "@context": schema: http://schema.org/ diff --git a/yaml/example-054-An-ordered-collection-of-values-in-JSON-LD-expanded.yaml b/yaml/example-055-An-ordered-collection-of-values-in-JSON-LD-expanded.yaml similarity index 71% rename from yaml/example-054-An-ordered-collection-of-values-in-JSON-LD-expanded.yaml rename to yaml/example-055-An-ordered-collection-of-values-in-JSON-LD-expanded.yaml index 785649be..7cf12eb2 100644 --- a/yaml/example-054-An-ordered-collection-of-values-in-JSON-LD-expanded.yaml +++ b/yaml/example-055-An-ordered-collection-of-values-in-JSON-LD-expanded.yaml @@ -1,4 +1,4 @@ -Example 054: An ordered collection of values in JSON-LD-expanded +Example 055: An ordered collection of values in JSON-LD-expanded --- - "@id": http://example.org/people#joebob http://xmlns.com/foaf/0.1/nick: diff --git a/yaml/example-054-An-ordered-collection-of-values-in-JSON-LD-original.yaml b/yaml/example-055-An-ordered-collection-of-values-in-JSON-LD-original.yaml similarity index 68% rename from yaml/example-054-An-ordered-collection-of-values-in-JSON-LD-original.yaml rename to yaml/example-055-An-ordered-collection-of-values-in-JSON-LD-original.yaml index f5abe028..a3be57d2 100644 --- a/yaml/example-054-An-ordered-collection-of-values-in-JSON-LD-original.yaml +++ b/yaml/example-055-An-ordered-collection-of-values-in-JSON-LD-original.yaml @@ -1,4 +1,4 @@ -Example 054: An ordered collection of values in JSON-LD-original +Example 055: An ordered collection of values in JSON-LD-original --- "@context": foaf: http://xmlns.com/foaf/0.1/ diff --git a/yaml/example-055-Specifying-that-a-collection-is-ordered-in-the-context-expanded.yaml b/yaml/example-056-Specifying-that-a-collection-is-ordered-in-the-context-expanded.yaml similarity index 72% rename from yaml/example-055-Specifying-that-a-collection-is-ordered-in-the-context-expanded.yaml rename to yaml/example-056-Specifying-that-a-collection-is-ordered-in-the-context-expanded.yaml index dc9f0be6..76a79182 100644 --- a/yaml/example-055-Specifying-that-a-collection-is-ordered-in-the-context-expanded.yaml +++ b/yaml/example-056-Specifying-that-a-collection-is-ordered-in-the-context-expanded.yaml @@ -1,4 +1,4 @@ -Example 055: Specifying that a collection is ordered in the context-expanded +Example 056: Specifying that a collection is ordered in the context-expanded --- - "@id": http://example.org/people#joebob http://xmlns.com/foaf/0.1/nick: diff --git a/yaml/example-055-Specifying-that-a-collection-is-ordered-in-the-context-original.yaml b/yaml/example-056-Specifying-that-a-collection-is-ordered-in-the-context-original.yaml similarity index 72% rename from yaml/example-055-Specifying-that-a-collection-is-ordered-in-the-context-original.yaml rename to yaml/example-056-Specifying-that-a-collection-is-ordered-in-the-context-original.yaml index 96864e22..bf251be4 100644 --- a/yaml/example-055-Specifying-that-a-collection-is-ordered-in-the-context-original.yaml +++ b/yaml/example-056-Specifying-that-a-collection-is-ordered-in-the-context-original.yaml @@ -1,4 +1,4 @@ -Example 055: Specifying that a collection is ordered in the context-original +Example 056: Specifying that a collection is ordered in the context-original --- "@context": nick: diff --git a/yaml/example-056-Coordinates-expressed-in-GeoJSON.yaml b/yaml/example-057-Coordinates-expressed-in-GeoJSON.yaml similarity index 81% rename from yaml/example-056-Coordinates-expressed-in-GeoJSON.yaml rename to yaml/example-057-Coordinates-expressed-in-GeoJSON.yaml index c3f32649..32c71793 100644 --- a/yaml/example-056-Coordinates-expressed-in-GeoJSON.yaml +++ b/yaml/example-057-Coordinates-expressed-in-GeoJSON.yaml @@ -1,4 +1,4 @@ -Example 056: Coordinates expressed in GeoJSON +Example 057: Coordinates expressed in GeoJSON --- type: Feature bbox: diff --git a/yaml/example-057-Coordinates-expressed-in-JSON-LD-expanded.yaml b/yaml/example-058-Coordinates-expressed-in-JSON-LD-expanded.yaml similarity index 92% rename from yaml/example-057-Coordinates-expressed-in-JSON-LD-expanded.yaml rename to yaml/example-058-Coordinates-expressed-in-JSON-LD-expanded.yaml index cce1ca74..4b22057b 100644 --- a/yaml/example-057-Coordinates-expressed-in-JSON-LD-expanded.yaml +++ b/yaml/example-058-Coordinates-expressed-in-JSON-LD-expanded.yaml @@ -1,4 +1,4 @@ -Example 057: Coordinates expressed in JSON-LD-expanded +Example 058: Coordinates expressed in JSON-LD-expanded --- - "@type": - https://purl.org/geojson/vocab#Feature diff --git a/yaml/example-057-Coordinates-expressed-in-JSON-LD-original.yaml b/yaml/example-058-Coordinates-expressed-in-JSON-LD-original.yaml similarity index 86% rename from yaml/example-057-Coordinates-expressed-in-JSON-LD-original.yaml rename to yaml/example-058-Coordinates-expressed-in-JSON-LD-original.yaml index 1a6620db..370395c5 100644 --- a/yaml/example-057-Coordinates-expressed-in-JSON-LD-original.yaml +++ b/yaml/example-058-Coordinates-expressed-in-JSON-LD-original.yaml @@ -1,4 +1,4 @@ -Example 057: Coordinates expressed in JSON-LD-original +Example 058: Coordinates expressed in JSON-LD-original --- "@context": "@vocab": https://purl.org/geojson/vocab# diff --git a/yaml/example-058-An-unordered-collection-of-values-in-JSON-LD-expanded.yaml b/yaml/example-059-An-unordered-collection-of-values-in-JSON-LD-expanded.yaml similarity index 68% rename from yaml/example-058-An-unordered-collection-of-values-in-JSON-LD-expanded.yaml rename to yaml/example-059-An-unordered-collection-of-values-in-JSON-LD-expanded.yaml index 95bb3d25..e3b75d8e 100644 --- a/yaml/example-058-An-unordered-collection-of-values-in-JSON-LD-expanded.yaml +++ b/yaml/example-059-An-unordered-collection-of-values-in-JSON-LD-expanded.yaml @@ -1,4 +1,4 @@ -Example 058: An unordered collection of values in JSON-LD-expanded +Example 059: An unordered collection of values in JSON-LD-expanded --- - "@id": http://example.org/people#joebob http://xmlns.com/foaf/0.1/nick: diff --git a/yaml/example-058-An-unordered-collection-of-values-in-JSON-LD-original.yaml b/yaml/example-059-An-unordered-collection-of-values-in-JSON-LD-original.yaml similarity index 68% rename from yaml/example-058-An-unordered-collection-of-values-in-JSON-LD-original.yaml rename to yaml/example-059-An-unordered-collection-of-values-in-JSON-LD-original.yaml index 6e8924b5..1ef5ea1d 100644 --- a/yaml/example-058-An-unordered-collection-of-values-in-JSON-LD-original.yaml +++ b/yaml/example-059-An-unordered-collection-of-values-in-JSON-LD-original.yaml @@ -1,4 +1,4 @@ -Example 058: An unordered collection of values in JSON-LD-original +Example 059: An unordered collection of values in JSON-LD-original --- "@context": foaf: http://xmlns.com/foaf/0.1/ diff --git a/yaml/example-059-Specifying-that-a-collection-is-unordered-in-the-context-expanded.yaml b/yaml/example-060-Specifying-that-a-collection-is-unordered-in-the-context-expanded.yaml similarity index 70% rename from yaml/example-059-Specifying-that-a-collection-is-unordered-in-the-context-expanded.yaml rename to yaml/example-060-Specifying-that-a-collection-is-unordered-in-the-context-expanded.yaml index 3572b2eb..a1862650 100644 --- a/yaml/example-059-Specifying-that-a-collection-is-unordered-in-the-context-expanded.yaml +++ b/yaml/example-060-Specifying-that-a-collection-is-unordered-in-the-context-expanded.yaml @@ -1,4 +1,4 @@ -Example 059: Specifying that a collection is unordered in the context-expanded +Example 060: Specifying that a collection is unordered in the context-expanded --- - "@id": http://example.org/people#joebob http://xmlns.com/foaf/0.1/nick: diff --git a/yaml/example-059-Specifying-that-a-collection-is-unordered-in-the-context-original.yaml b/yaml/example-060-Specifying-that-a-collection-is-unordered-in-the-context-original.yaml similarity index 72% rename from yaml/example-059-Specifying-that-a-collection-is-unordered-in-the-context-original.yaml rename to yaml/example-060-Specifying-that-a-collection-is-unordered-in-the-context-original.yaml index 38231f48..56640b5f 100644 --- a/yaml/example-059-Specifying-that-a-collection-is-unordered-in-the-context-original.yaml +++ b/yaml/example-060-Specifying-that-a-collection-is-unordered-in-the-context-original.yaml @@ -1,4 +1,4 @@ -Example 059: Specifying that a collection is unordered in the context-original +Example 060: Specifying that a collection is unordered in the context-original --- "@context": nick: diff --git a/yaml/example-060-Nested-properties-expanded.yaml b/yaml/example-061-Nested-properties-expanded.yaml similarity index 88% rename from yaml/example-060-Nested-properties-expanded.yaml rename to yaml/example-061-Nested-properties-expanded.yaml index 242c413e..15764242 100644 --- a/yaml/example-060-Nested-properties-expanded.yaml +++ b/yaml/example-061-Nested-properties-expanded.yaml @@ -1,4 +1,4 @@ -Example 060: Nested properties-expanded +Example 061: Nested properties-expanded --- - "@id": http://example.org/myresource http://xmlns.com/foaf/0.1/homepage: diff --git a/yaml/example-060-Nested-properties-original.yaml b/yaml/example-061-Nested-properties-original.yaml similarity index 91% rename from yaml/example-060-Nested-properties-original.yaml rename to yaml/example-061-Nested-properties-original.yaml index 32db374a..2833c39b 100644 --- a/yaml/example-060-Nested-properties-original.yaml +++ b/yaml/example-061-Nested-properties-original.yaml @@ -1,4 +1,4 @@ -Example 060: Nested properties-original +Example 061: Nested properties-original --- "@context": "@version": 1.1 diff --git a/yaml/example-061-Nested-properties-folded-into-containing-object-expanded.yaml b/yaml/example-062-Nested-properties-folded-into-containing-object-expanded.yaml similarity index 82% rename from yaml/example-061-Nested-properties-folded-into-containing-object-expanded.yaml rename to yaml/example-062-Nested-properties-folded-into-containing-object-expanded.yaml index a708c5bc..bbc7eff1 100644 --- a/yaml/example-061-Nested-properties-folded-into-containing-object-expanded.yaml +++ b/yaml/example-062-Nested-properties-folded-into-containing-object-expanded.yaml @@ -1,4 +1,4 @@ -Example 061: Nested properties folded into containing object-expanded +Example 062: Nested properties folded into containing object-expanded --- - "@id": http://example.org/myresource http://xmlns.com/foaf/0.1/homepage: diff --git a/yaml/example-061-Nested-properties-folded-into-containing-object-original.yaml b/yaml/example-062-Nested-properties-folded-into-containing-object-original.yaml similarity index 85% rename from yaml/example-061-Nested-properties-folded-into-containing-object-original.yaml rename to yaml/example-062-Nested-properties-folded-into-containing-object-original.yaml index 76e6f6c5..441e54e3 100644 --- a/yaml/example-061-Nested-properties-folded-into-containing-object-original.yaml +++ b/yaml/example-062-Nested-properties-folded-into-containing-object-original.yaml @@ -1,4 +1,4 @@ -Example 061: Nested properties folded into containing object-original +Example 062: Nested properties folded into containing object-original --- "@context": skos: http://www.w3.org/2004/02/skos/core# diff --git a/yaml/example-062-Defining-property-nesting-expanded.yaml b/yaml/example-063-Defining-property-nesting-expanded.yaml similarity index 86% rename from yaml/example-062-Defining-property-nesting-expanded.yaml rename to yaml/example-063-Defining-property-nesting-expanded.yaml index 025eaa16..7efb46f4 100644 --- a/yaml/example-062-Defining-property-nesting-expanded.yaml +++ b/yaml/example-063-Defining-property-nesting-expanded.yaml @@ -1,4 +1,4 @@ -Example 062: Defining property nesting-expanded +Example 063: Defining property nesting-expanded --- - "@id": http://example.org/myresource http://xmlns.com/foaf/0.1/homepage: diff --git a/yaml/example-062-Defining-property-nesting-original.yaml b/yaml/example-063-Defining-property-nesting-original.yaml similarity index 90% rename from yaml/example-062-Defining-property-nesting-original.yaml rename to yaml/example-063-Defining-property-nesting-original.yaml index 5370f7af..4306e8ba 100644 --- a/yaml/example-062-Defining-property-nesting-original.yaml +++ b/yaml/example-063-Defining-property-nesting-original.yaml @@ -1,4 +1,4 @@ -Example 062: Defining property nesting-original +Example 063: Defining property nesting-original --- "@context": "@version": 1.1 diff --git a/yaml/example-063-Referencing-node-objects-expanded.yaml b/yaml/example-064-Referencing-node-objects-expanded.yaml similarity index 86% rename from yaml/example-063-Referencing-node-objects-expanded.yaml rename to yaml/example-064-Referencing-node-objects-expanded.yaml index d1eabe8e..638fa9d4 100644 --- a/yaml/example-063-Referencing-node-objects-expanded.yaml +++ b/yaml/example-064-Referencing-node-objects-expanded.yaml @@ -1,4 +1,4 @@ -Example 063: Referencing node objects-expanded +Example 064: Referencing node objects-expanded --- - "@type": - http://schema.org/Person diff --git a/yaml/example-063-Referencing-node-objects-original.yaml b/yaml/example-064-Referencing-node-objects-original.yaml similarity index 83% rename from yaml/example-063-Referencing-node-objects-original.yaml rename to yaml/example-064-Referencing-node-objects-original.yaml index dc84a649..52325341 100644 --- a/yaml/example-063-Referencing-node-objects-original.yaml +++ b/yaml/example-064-Referencing-node-objects-original.yaml @@ -1,4 +1,4 @@ -Example 063: Referencing node objects-original +Example 064: Referencing node objects-original --- "@context": "@vocab": http://schema.org/ diff --git a/yaml/example-064-Embedding-a-node-object-as-property-value-of-another-node-object-expanded.yaml b/yaml/example-065-Embedding-a-node-object-as-property-value-of-another-node-object-expanded.yaml similarity index 81% rename from yaml/example-064-Embedding-a-node-object-as-property-value-of-another-node-object-expanded.yaml rename to yaml/example-065-Embedding-a-node-object-as-property-value-of-another-node-object-expanded.yaml index 1955d332..d9a709a9 100644 --- a/yaml/example-064-Embedding-a-node-object-as-property-value-of-another-node-object-expanded.yaml +++ b/yaml/example-065-Embedding-a-node-object-as-property-value-of-another-node-object-expanded.yaml @@ -1,4 +1,4 @@ -Example 064: Embedding a node object as property value of another node object-expanded +Example 065: Embedding a node object as property value of another node object-expanded --- - "@type": - http://schema.org/Person diff --git a/yaml/example-064-Embedding-a-node-object-as-property-value-of-another-node-object-original.yaml b/yaml/example-065-Embedding-a-node-object-as-property-value-of-another-node-object-original.yaml similarity index 75% rename from yaml/example-064-Embedding-a-node-object-as-property-value-of-another-node-object-original.yaml rename to yaml/example-065-Embedding-a-node-object-as-property-value-of-another-node-object-original.yaml index b92d67e8..ab2170f3 100644 --- a/yaml/example-064-Embedding-a-node-object-as-property-value-of-another-node-object-original.yaml +++ b/yaml/example-065-Embedding-a-node-object-as-property-value-of-another-node-object-original.yaml @@ -1,4 +1,4 @@ -Example 064: Embedding a node object as property value of another node object-original +Example 065: Embedding a node object as property value of another node object-original --- "@context": "@vocab": http://schema.org/ diff --git a/yaml/example-065-Referencing-an-unidentified-node-expanded.yaml b/yaml/example-066-Referencing-an-unidentified-node-expanded.yaml similarity index 85% rename from yaml/example-065-Referencing-an-unidentified-node-expanded.yaml rename to yaml/example-066-Referencing-an-unidentified-node-expanded.yaml index 2e3aa0ed..726b3d64 100644 --- a/yaml/example-065-Referencing-an-unidentified-node-expanded.yaml +++ b/yaml/example-066-Referencing-an-unidentified-node-expanded.yaml @@ -1,4 +1,4 @@ -Example 065: Referencing an unidentified node-expanded +Example 066: Referencing an unidentified node-expanded --- - "@id": _:b0 "@type": diff --git a/yaml/example-065-Referencing-an-unidentified-node-original.yaml b/yaml/example-066-Referencing-an-unidentified-node-original.yaml similarity index 78% rename from yaml/example-065-Referencing-an-unidentified-node-original.yaml rename to yaml/example-066-Referencing-an-unidentified-node-original.yaml index 601bd500..9a83ab55 100644 --- a/yaml/example-065-Referencing-an-unidentified-node-original.yaml +++ b/yaml/example-066-Referencing-an-unidentified-node-original.yaml @@ -1,4 +1,4 @@ -Example 065: Referencing an unidentified node-original +Example 066: Referencing an unidentified node-original --- "@context": "@vocab": http://schema.org/ diff --git a/yaml/example-066-Specifying-a-local-blank-node-identifier-expanded.yaml b/yaml/example-067-Specifying-a-local-blank-node-identifier-expanded.yaml similarity index 76% rename from yaml/example-066-Specifying-a-local-blank-node-identifier-expanded.yaml rename to yaml/example-067-Specifying-a-local-blank-node-identifier-expanded.yaml index dd8a0b8e..7a468696 100644 --- a/yaml/example-066-Specifying-a-local-blank-node-identifier-expanded.yaml +++ b/yaml/example-067-Specifying-a-local-blank-node-identifier-expanded.yaml @@ -1,4 +1,4 @@ -Example 066: Specifying a local blank node identifier-expanded +Example 067: Specifying a local blank node identifier-expanded --- - "@id": _:n1 http://schema.org/name: diff --git a/yaml/example-066-Specifying-a-local-blank-node-identifier-original.yaml b/yaml/example-067-Specifying-a-local-blank-node-identifier-original.yaml similarity index 68% rename from yaml/example-066-Specifying-a-local-blank-node-identifier-original.yaml rename to yaml/example-067-Specifying-a-local-blank-node-identifier-original.yaml index 4b9b970d..1905237a 100644 --- a/yaml/example-066-Specifying-a-local-blank-node-identifier-original.yaml +++ b/yaml/example-067-Specifying-a-local-blank-node-identifier-original.yaml @@ -1,4 +1,4 @@ -Example 066: Specifying a local blank node identifier-original +Example 067: Specifying a local blank node identifier-original --- "@context": "@vocab": http://schema.org/ diff --git a/yaml/example-067-Indexing-data-in-JSON-LD-expanded.yaml b/yaml/example-068-Indexing-data-in-JSON-LD-expanded.yaml similarity index 93% rename from yaml/example-067-Indexing-data-in-JSON-LD-expanded.yaml rename to yaml/example-068-Indexing-data-in-JSON-LD-expanded.yaml index 1fd3286d..d213c029 100644 --- a/yaml/example-067-Indexing-data-in-JSON-LD-expanded.yaml +++ b/yaml/example-068-Indexing-data-in-JSON-LD-expanded.yaml @@ -1,4 +1,4 @@ -Example 067: Indexing data in JSON-LD-expanded +Example 068: Indexing data in JSON-LD-expanded --- - "@id": http://example.com/ "@type": diff --git a/yaml/example-067-Indexing-data-in-JSON-LD-original.yaml b/yaml/example-068-Indexing-data-in-JSON-LD-original.yaml similarity index 92% rename from yaml/example-067-Indexing-data-in-JSON-LD-original.yaml rename to yaml/example-068-Indexing-data-in-JSON-LD-original.yaml index c5c0c433..23a37ac4 100644 --- a/yaml/example-067-Indexing-data-in-JSON-LD-original.yaml +++ b/yaml/example-068-Indexing-data-in-JSON-LD-original.yaml @@ -1,4 +1,4 @@ -Example 067: Indexing data in JSON-LD-original +Example 068: Indexing data in JSON-LD-original --- "@context": schema: http://schema.org/ diff --git a/yaml/example-068-Indexing-data-using-none-expanded.yaml b/yaml/example-069-Indexing-data-using-none-expanded.yaml similarity index 94% rename from yaml/example-068-Indexing-data-using-none-expanded.yaml rename to yaml/example-069-Indexing-data-using-none-expanded.yaml index fb78c88f..13827fb9 100644 --- a/yaml/example-068-Indexing-data-using-none-expanded.yaml +++ b/yaml/example-069-Indexing-data-using-none-expanded.yaml @@ -1,4 +1,4 @@ -Example 068: Indexing data using @none-expanded +Example 069: Indexing data using @none-expanded --- - "@id": http://example.com/ "@type": diff --git a/yaml/example-068-Indexing-data-using-none-original.yaml b/yaml/example-069-Indexing-data-using-none-original.yaml similarity index 93% rename from yaml/example-068-Indexing-data-using-none-original.yaml rename to yaml/example-069-Indexing-data-using-none-original.yaml index b18edd65..313fb1b2 100644 --- a/yaml/example-068-Indexing-data-using-none-original.yaml +++ b/yaml/example-069-Indexing-data-using-none-original.yaml @@ -1,4 +1,4 @@ -Example 068: Indexing data using @none-original +Example 069: Indexing data using @none-original --- "@context": "@version": 1.1 diff --git a/yaml/example-069-Indexing-languaged-tagged-strings-in-JSON-LD-expanded.yaml b/yaml/example-070-Indexing-languaged-tagged-strings-in-JSON-LD-expanded.yaml similarity index 77% rename from yaml/example-069-Indexing-languaged-tagged-strings-in-JSON-LD-expanded.yaml rename to yaml/example-070-Indexing-languaged-tagged-strings-in-JSON-LD-expanded.yaml index 35c7abb8..d6a446ec 100644 --- a/yaml/example-069-Indexing-languaged-tagged-strings-in-JSON-LD-expanded.yaml +++ b/yaml/example-070-Indexing-languaged-tagged-strings-in-JSON-LD-expanded.yaml @@ -1,4 +1,4 @@ -Example 069: Indexing languaged-tagged strings in JSON-LD-expanded +Example 070: Indexing languaged-tagged strings in JSON-LD-expanded --- - "@id": http://example.com/queen http://example.com/vocab/label: diff --git a/yaml/example-069-Indexing-languaged-tagged-strings-in-JSON-LD-original.yaml b/yaml/example-070-Indexing-languaged-tagged-strings-in-JSON-LD-original.yaml similarity index 76% rename from yaml/example-069-Indexing-languaged-tagged-strings-in-JSON-LD-original.yaml rename to yaml/example-070-Indexing-languaged-tagged-strings-in-JSON-LD-original.yaml index 53b849fb..111d27be 100644 --- a/yaml/example-069-Indexing-languaged-tagged-strings-in-JSON-LD-original.yaml +++ b/yaml/example-070-Indexing-languaged-tagged-strings-in-JSON-LD-original.yaml @@ -1,4 +1,4 @@ -Example 069: Indexing languaged-tagged strings in JSON-LD-original +Example 070: Indexing languaged-tagged strings in JSON-LD-original --- "@context": vocab: http://example.com/vocab/ diff --git a/yaml/example-070-Indexing-languaged-tagged-strings-in-JSON-LD-with-set-representation-expanded.yaml b/yaml/example-071-Indexing-languaged-tagged-strings-in-JSON-LD-with-set-representation-expanded.yaml similarity index 78% rename from yaml/example-070-Indexing-languaged-tagged-strings-in-JSON-LD-with-set-representation-expanded.yaml rename to yaml/example-071-Indexing-languaged-tagged-strings-in-JSON-LD-with-set-representation-expanded.yaml index 77b2d50c..2a68fe73 100644 --- a/yaml/example-070-Indexing-languaged-tagged-strings-in-JSON-LD-with-set-representation-expanded.yaml +++ b/yaml/example-071-Indexing-languaged-tagged-strings-in-JSON-LD-with-set-representation-expanded.yaml @@ -1,4 +1,4 @@ -Example 070: Indexing languaged-tagged strings in JSON-LD with @set representation-expanded +Example 071: Indexing languaged-tagged strings in JSON-LD with @set representation-expanded --- - "@id": http://example.com/queen http://example.com/vocab/label: diff --git a/yaml/example-070-Indexing-languaged-tagged-strings-in-JSON-LD-with-set-representation-original.yaml b/yaml/example-071-Indexing-languaged-tagged-strings-in-JSON-LD-with-set-representation-original.yaml similarity index 81% rename from yaml/example-070-Indexing-languaged-tagged-strings-in-JSON-LD-with-set-representation-original.yaml rename to yaml/example-071-Indexing-languaged-tagged-strings-in-JSON-LD-with-set-representation-original.yaml index e00e46cc..d17955ba 100644 --- a/yaml/example-070-Indexing-languaged-tagged-strings-in-JSON-LD-with-set-representation-original.yaml +++ b/yaml/example-071-Indexing-languaged-tagged-strings-in-JSON-LD-with-set-representation-original.yaml @@ -1,4 +1,4 @@ -Example 070: Indexing languaged-tagged strings in JSON-LD with @set representation-original +Example 071: Indexing languaged-tagged strings in JSON-LD with @set representation-original --- "@context": "@version": 1.1 diff --git a/yaml/example-071-Indexing-languaged-tagged-strings-using-none-for-no-language-expanded.yaml b/yaml/example-072-Indexing-languaged-tagged-strings-using-none-for-no-language-expanded.yaml similarity index 80% rename from yaml/example-071-Indexing-languaged-tagged-strings-using-none-for-no-language-expanded.yaml rename to yaml/example-072-Indexing-languaged-tagged-strings-using-none-for-no-language-expanded.yaml index 220c63a9..aaecae48 100644 --- a/yaml/example-071-Indexing-languaged-tagged-strings-using-none-for-no-language-expanded.yaml +++ b/yaml/example-072-Indexing-languaged-tagged-strings-using-none-for-no-language-expanded.yaml @@ -1,4 +1,4 @@ -Example 071: Indexing languaged-tagged strings using @none for no language-expanded +Example 072: Indexing languaged-tagged strings using @none for no language-expanded --- - "@id": http://example.com/queen http://example.com/vocab/label: diff --git a/yaml/example-071-Indexing-languaged-tagged-strings-using-none-for-no-language-original.yaml b/yaml/example-072-Indexing-languaged-tagged-strings-using-none-for-no-language-original.yaml similarity index 79% rename from yaml/example-071-Indexing-languaged-tagged-strings-using-none-for-no-language-original.yaml rename to yaml/example-072-Indexing-languaged-tagged-strings-using-none-for-no-language-original.yaml index bed8d051..1838a168 100644 --- a/yaml/example-071-Indexing-languaged-tagged-strings-using-none-for-no-language-original.yaml +++ b/yaml/example-072-Indexing-languaged-tagged-strings-using-none-for-no-language-original.yaml @@ -1,4 +1,4 @@ -Example 071: Indexing languaged-tagged strings using @none for no language-original +Example 072: Indexing languaged-tagged strings using @none for no language-original --- "@context": vocab: http://example.com/vocab/ diff --git a/yaml/example-072-Indexing-data-in-JSON-LD-by-node-identifiers-expanded.yaml b/yaml/example-073-Indexing-data-in-JSON-LD-by-node-identifiers-expanded.yaml similarity index 90% rename from yaml/example-072-Indexing-data-in-JSON-LD-by-node-identifiers-expanded.yaml rename to yaml/example-073-Indexing-data-in-JSON-LD-by-node-identifiers-expanded.yaml index f0683631..7c45bc5a 100644 --- a/yaml/example-072-Indexing-data-in-JSON-LD-by-node-identifiers-expanded.yaml +++ b/yaml/example-073-Indexing-data-in-JSON-LD-by-node-identifiers-expanded.yaml @@ -1,4 +1,4 @@ -Example 072: Indexing data in JSON-LD by node identifiers-expanded +Example 073: Indexing data in JSON-LD by node identifiers-expanded --- - "@id": http://example.com/ "@type": diff --git a/yaml/example-072-Indexing-data-in-JSON-LD-by-node-identifiers-original.yaml b/yaml/example-073-Indexing-data-in-JSON-LD-by-node-identifiers-original.yaml similarity index 89% rename from yaml/example-072-Indexing-data-in-JSON-LD-by-node-identifiers-original.yaml rename to yaml/example-073-Indexing-data-in-JSON-LD-by-node-identifiers-original.yaml index 34012e49..41aa7598 100644 --- a/yaml/example-072-Indexing-data-in-JSON-LD-by-node-identifiers-original.yaml +++ b/yaml/example-073-Indexing-data-in-JSON-LD-by-node-identifiers-original.yaml @@ -1,4 +1,4 @@ -Example 072: Indexing data in JSON-LD by node identifiers-original +Example 073: Indexing data in JSON-LD by node identifiers-original --- "@context": "@version": 1.1 diff --git a/yaml/example-073-Indexing-data-in-JSON-LD-by-node-identifiers-with-set-representation-expanded.yaml b/yaml/example-074-Indexing-data-in-JSON-LD-by-node-identifiers-with-set-representation-expanded.yaml similarity index 90% rename from yaml/example-073-Indexing-data-in-JSON-LD-by-node-identifiers-with-set-representation-expanded.yaml rename to yaml/example-074-Indexing-data-in-JSON-LD-by-node-identifiers-with-set-representation-expanded.yaml index 2937e1c7..12a60dcb 100644 --- a/yaml/example-073-Indexing-data-in-JSON-LD-by-node-identifiers-with-set-representation-expanded.yaml +++ b/yaml/example-074-Indexing-data-in-JSON-LD-by-node-identifiers-with-set-representation-expanded.yaml @@ -1,4 +1,4 @@ -Example 073: Indexing data in JSON-LD by node identifiers with @set representation-expanded +Example 074: Indexing data in JSON-LD by node identifiers with @set representation-expanded --- - "@id": http://example.com/ "@type": diff --git a/yaml/example-073-Indexing-data-in-JSON-LD-by-node-identifiers-with-set-representation-original.yaml b/yaml/example-074-Indexing-data-in-JSON-LD-by-node-identifiers-with-set-representation-original.yaml similarity index 90% rename from yaml/example-073-Indexing-data-in-JSON-LD-by-node-identifiers-with-set-representation-original.yaml rename to yaml/example-074-Indexing-data-in-JSON-LD-by-node-identifiers-with-set-representation-original.yaml index 0b6818a7..2ec92dab 100644 --- a/yaml/example-073-Indexing-data-in-JSON-LD-by-node-identifiers-with-set-representation-original.yaml +++ b/yaml/example-074-Indexing-data-in-JSON-LD-by-node-identifiers-with-set-representation-original.yaml @@ -1,4 +1,4 @@ -Example 073: Indexing data in JSON-LD by node identifiers with @set representation-original +Example 074: Indexing data in JSON-LD by node identifiers with @set representation-original --- "@context": "@version": 1.1 diff --git a/yaml/example-074-Indexing-data-in-JSON-LD-by-node-identifiers-using-none-expanded.yaml b/yaml/example-075-Indexing-data-in-JSON-LD-by-node-identifiers-using-none-expanded.yaml similarity index 92% rename from yaml/example-074-Indexing-data-in-JSON-LD-by-node-identifiers-using-none-expanded.yaml rename to yaml/example-075-Indexing-data-in-JSON-LD-by-node-identifiers-using-none-expanded.yaml index 281c612b..53c687a8 100644 --- a/yaml/example-074-Indexing-data-in-JSON-LD-by-node-identifiers-using-none-expanded.yaml +++ b/yaml/example-075-Indexing-data-in-JSON-LD-by-node-identifiers-using-none-expanded.yaml @@ -1,4 +1,4 @@ -Example 074: Indexing data in JSON-LD by node identifiers using @none-expanded +Example 075: Indexing data in JSON-LD by node identifiers using @none-expanded --- - "@id": http://example.com/ "@type": diff --git a/yaml/example-074-Indexing-data-in-JSON-LD-by-node-identifiers-using-none-original.yaml b/yaml/example-075-Indexing-data-in-JSON-LD-by-node-identifiers-using-none-original.yaml similarity index 90% rename from yaml/example-074-Indexing-data-in-JSON-LD-by-node-identifiers-using-none-original.yaml rename to yaml/example-075-Indexing-data-in-JSON-LD-by-node-identifiers-using-none-original.yaml index 333f2388..0b139dbf 100644 --- a/yaml/example-074-Indexing-data-in-JSON-LD-by-node-identifiers-using-none-original.yaml +++ b/yaml/example-075-Indexing-data-in-JSON-LD-by-node-identifiers-using-none-original.yaml @@ -1,4 +1,4 @@ -Example 074: Indexing data in JSON-LD by node identifiers using @none-original +Example 075: Indexing data in JSON-LD by node identifiers using @none-original --- "@context": "@version": 1.1 diff --git a/yaml/example-075-Indexing-data-in-JSON-LD-by-type-expanded.yaml b/yaml/example-076-Indexing-data-in-JSON-LD-by-type-expanded.yaml similarity index 87% rename from yaml/example-075-Indexing-data-in-JSON-LD-by-type-expanded.yaml rename to yaml/example-076-Indexing-data-in-JSON-LD-by-type-expanded.yaml index ea94ad87..5b5795bb 100644 --- a/yaml/example-075-Indexing-data-in-JSON-LD-by-type-expanded.yaml +++ b/yaml/example-076-Indexing-data-in-JSON-LD-by-type-expanded.yaml @@ -1,4 +1,4 @@ -Example 075: Indexing data in JSON-LD by type-expanded +Example 076: Indexing data in JSON-LD by type-expanded --- - http://schema.org/name: - "@value": Manu Sporny diff --git a/yaml/example-075-Indexing-data-in-JSON-LD-by-type-original.yaml b/yaml/example-076-Indexing-data-in-JSON-LD-by-type-original.yaml similarity index 86% rename from yaml/example-075-Indexing-data-in-JSON-LD-by-type-original.yaml rename to yaml/example-076-Indexing-data-in-JSON-LD-by-type-original.yaml index ee84728b..2be04495 100644 --- a/yaml/example-075-Indexing-data-in-JSON-LD-by-type-original.yaml +++ b/yaml/example-076-Indexing-data-in-JSON-LD-by-type-original.yaml @@ -1,4 +1,4 @@ -Example 075: Indexing data in JSON-LD by type-original +Example 076: Indexing data in JSON-LD by type-original --- "@context": "@version": 1.1 diff --git a/yaml/example-076-Indexing-data-in-JSON-LD-by-type-with-set-representation-expanded.yaml b/yaml/example-077-Indexing-data-in-JSON-LD-by-type-with-set-representation-expanded.yaml similarity index 85% rename from yaml/example-076-Indexing-data-in-JSON-LD-by-type-with-set-representation-expanded.yaml rename to yaml/example-077-Indexing-data-in-JSON-LD-by-type-with-set-representation-expanded.yaml index ae993069..a9816ee2 100644 --- a/yaml/example-076-Indexing-data-in-JSON-LD-by-type-with-set-representation-expanded.yaml +++ b/yaml/example-077-Indexing-data-in-JSON-LD-by-type-with-set-representation-expanded.yaml @@ -1,4 +1,4 @@ -Example 076: Indexing data in JSON-LD by type with @set representation-expanded +Example 077: Indexing data in JSON-LD by type with @set representation-expanded --- - http://schema.org/name: - "@value": Manu Sporny diff --git a/yaml/example-076-Indexing-data-in-JSON-LD-by-type-with-set-representation-original.yaml b/yaml/example-077-Indexing-data-in-JSON-LD-by-type-with-set-representation-original.yaml similarity index 85% rename from yaml/example-076-Indexing-data-in-JSON-LD-by-type-with-set-representation-original.yaml rename to yaml/example-077-Indexing-data-in-JSON-LD-by-type-with-set-representation-original.yaml index f7778743..56d43923 100644 --- a/yaml/example-076-Indexing-data-in-JSON-LD-by-type-with-set-representation-original.yaml +++ b/yaml/example-077-Indexing-data-in-JSON-LD-by-type-with-set-representation-original.yaml @@ -1,4 +1,4 @@ -Example 076: Indexing data in JSON-LD by type with @set representation-original +Example 077: Indexing data in JSON-LD by type with @set representation-original --- "@context": "@version": 1.1 diff --git a/yaml/example-077-Indexing-data-in-JSON-LD-by-type-using-none-expanded.yaml b/yaml/example-078-Indexing-data-in-JSON-LD-by-type-using-none-expanded.yaml similarity index 88% rename from yaml/example-077-Indexing-data-in-JSON-LD-by-type-using-none-expanded.yaml rename to yaml/example-078-Indexing-data-in-JSON-LD-by-type-using-none-expanded.yaml index cb43f0cc..594e5607 100644 --- a/yaml/example-077-Indexing-data-in-JSON-LD-by-type-using-none-expanded.yaml +++ b/yaml/example-078-Indexing-data-in-JSON-LD-by-type-using-none-expanded.yaml @@ -1,4 +1,4 @@ -Example 077: Indexing data in JSON-LD by type using @none-expanded +Example 078: Indexing data in JSON-LD by type using @none-expanded --- - http://schema.org/name: - "@value": Manu Sporny diff --git a/yaml/example-077-Indexing-data-in-JSON-LD-by-type-using-none-original.yaml b/yaml/example-078-Indexing-data-in-JSON-LD-by-type-using-none-original.yaml similarity index 87% rename from yaml/example-077-Indexing-data-in-JSON-LD-by-type-using-none-original.yaml rename to yaml/example-078-Indexing-data-in-JSON-LD-by-type-using-none-original.yaml index d34f5f43..ebed6d18 100644 --- a/yaml/example-077-Indexing-data-in-JSON-LD-by-type-using-none-original.yaml +++ b/yaml/example-078-Indexing-data-in-JSON-LD-by-type-using-none-original.yaml @@ -1,4 +1,4 @@ -Example 077: Indexing data in JSON-LD by type using @none-original +Example 078: Indexing data in JSON-LD by type using @none-original --- "@context": "@version": 1.1 diff --git a/yaml/example-078-A-document-with-children-linking-to-their-parent-expanded.yaml b/yaml/example-079-A-document-with-children-linking-to-their-parent-expanded.yaml similarity index 86% rename from yaml/example-078-A-document-with-children-linking-to-their-parent-expanded.yaml rename to yaml/example-079-A-document-with-children-linking-to-their-parent-expanded.yaml index 1b794de2..053047a1 100644 --- a/yaml/example-078-A-document-with-children-linking-to-their-parent-expanded.yaml +++ b/yaml/example-079-A-document-with-children-linking-to-their-parent-expanded.yaml @@ -1,4 +1,4 @@ -Example 078: A document with children linking to their parent-expanded +Example 079: A document with children linking to their parent-expanded --- - "@id": http://example.org/#homer http://example.com/vocab#name: diff --git a/yaml/example-078-A-document-with-children-linking-to-their-parent-original.yaml b/yaml/example-079-A-document-with-children-linking-to-their-parent-original.yaml similarity index 81% rename from yaml/example-078-A-document-with-children-linking-to-their-parent-original.yaml rename to yaml/example-079-A-document-with-children-linking-to-their-parent-original.yaml index 61a14cb1..8f99e809 100644 --- a/yaml/example-078-A-document-with-children-linking-to-their-parent-original.yaml +++ b/yaml/example-079-A-document-with-children-linking-to-their-parent-original.yaml @@ -1,4 +1,4 @@ -Example 078: A document with children linking to their parent-original +Example 079: A document with children linking to their parent-original --- - "@id": "#homer" http://example.com/vocab#name: Homer diff --git a/yaml/example-079-A-person-and-its-children-using-a-reverse-property-expanded.yaml b/yaml/example-080-A-person-and-its-children-using-a-reverse-property-expanded.yaml similarity index 84% rename from yaml/example-079-A-person-and-its-children-using-a-reverse-property-expanded.yaml rename to yaml/example-080-A-person-and-its-children-using-a-reverse-property-expanded.yaml index 49a33cf5..506fb183 100644 --- a/yaml/example-079-A-person-and-its-children-using-a-reverse-property-expanded.yaml +++ b/yaml/example-080-A-person-and-its-children-using-a-reverse-property-expanded.yaml @@ -1,4 +1,4 @@ -Example 079: A person and its children using a reverse property-expanded +Example 080: A person and its children using a reverse property-expanded --- - "@id": http://example.org/#homer http://example.com/vocab#name: diff --git a/yaml/example-079-A-person-and-its-children-using-a-reverse-property-flattened.yaml b/yaml/example-080-A-person-and-its-children-using-a-reverse-property-flattened.yaml similarity index 86% rename from yaml/example-079-A-person-and-its-children-using-a-reverse-property-flattened.yaml rename to yaml/example-080-A-person-and-its-children-using-a-reverse-property-flattened.yaml index 46940430..ecdda64b 100644 --- a/yaml/example-079-A-person-and-its-children-using-a-reverse-property-flattened.yaml +++ b/yaml/example-080-A-person-and-its-children-using-a-reverse-property-flattened.yaml @@ -1,4 +1,4 @@ -Example 079: A person and its children using a reverse property-flattened +Example 080: A person and its children using a reverse property-flattened --- - "@id": http://example.org/#homer http://example.com/vocab#name: diff --git a/yaml/example-079-A-person-and-its-children-using-a-reverse-property-original.yaml b/yaml/example-080-A-person-and-its-children-using-a-reverse-property-original.yaml similarity index 78% rename from yaml/example-079-A-person-and-its-children-using-a-reverse-property-original.yaml rename to yaml/example-080-A-person-and-its-children-using-a-reverse-property-original.yaml index a1e53868..c7f926da 100644 --- a/yaml/example-079-A-person-and-its-children-using-a-reverse-property-original.yaml +++ b/yaml/example-080-A-person-and-its-children-using-a-reverse-property-original.yaml @@ -1,4 +1,4 @@ -Example 079: A person and its children using a reverse property-original +Example 080: A person and its children using a reverse property-original --- "@id": "#homer" http://example.com/vocab#name: Homer diff --git a/yaml/example-080-Using-reverse-to-define-reverse-properties-expanded.yaml b/yaml/example-081-Using-reverse-to-define-reverse-properties-expanded.yaml similarity index 84% rename from yaml/example-080-Using-reverse-to-define-reverse-properties-expanded.yaml rename to yaml/example-081-Using-reverse-to-define-reverse-properties-expanded.yaml index b448cdfa..783f7a92 100644 --- a/yaml/example-080-Using-reverse-to-define-reverse-properties-expanded.yaml +++ b/yaml/example-081-Using-reverse-to-define-reverse-properties-expanded.yaml @@ -1,4 +1,4 @@ -Example 080: Using @reverse to define reverse properties-expanded +Example 081: Using @reverse to define reverse properties-expanded --- - "@id": http://example.org/#homer http://example.com/vocab#name: diff --git a/yaml/example-080-Using-reverse-to-define-reverse-properties-flattened.yaml b/yaml/example-081-Using-reverse-to-define-reverse-properties-flattened.yaml similarity index 86% rename from yaml/example-080-Using-reverse-to-define-reverse-properties-flattened.yaml rename to yaml/example-081-Using-reverse-to-define-reverse-properties-flattened.yaml index 8d66ec85..6e7079e2 100644 --- a/yaml/example-080-Using-reverse-to-define-reverse-properties-flattened.yaml +++ b/yaml/example-081-Using-reverse-to-define-reverse-properties-flattened.yaml @@ -1,4 +1,4 @@ -Example 080: Using @reverse to define reverse properties-flattened +Example 081: Using @reverse to define reverse properties-flattened --- - "@id": http://example.org/#homer http://example.com/vocab#name: diff --git a/yaml/example-080-Using-reverse-to-define-reverse-properties-original.yaml b/yaml/example-081-Using-reverse-to-define-reverse-properties-original.yaml similarity index 76% rename from yaml/example-080-Using-reverse-to-define-reverse-properties-original.yaml rename to yaml/example-081-Using-reverse-to-define-reverse-properties-original.yaml index 68e0a26a..9320d039 100644 --- a/yaml/example-080-Using-reverse-to-define-reverse-properties-original.yaml +++ b/yaml/example-081-Using-reverse-to-define-reverse-properties-original.yaml @@ -1,4 +1,4 @@ -Example 080: Using @reverse to define reverse properties-original +Example 081: Using @reverse to define reverse properties-original --- "@context": name: http://example.com/vocab#name diff --git a/yaml/example-081-Identifying-and-making-statements-about-a-graph-expanded.yaml b/yaml/example-082-Identifying-and-making-statements-about-a-graph-expanded.yaml similarity index 91% rename from yaml/example-081-Identifying-and-making-statements-about-a-graph-expanded.yaml rename to yaml/example-082-Identifying-and-making-statements-about-a-graph-expanded.yaml index bb2aee8b..53462200 100644 --- a/yaml/example-081-Identifying-and-making-statements-about-a-graph-expanded.yaml +++ b/yaml/example-082-Identifying-and-making-statements-about-a-graph-expanded.yaml @@ -1,4 +1,4 @@ -Example 081: Identifying and making statements about a graph-expanded +Example 082: Identifying and making statements about a graph-expanded --- - "@id": http://example.org/foaf-graph http://www.w3.org/ns/prov#generatedAtTime: diff --git a/yaml/example-081-Identifying-and-making-statements-about-a-graph-original.yaml b/yaml/example-082-Identifying-and-making-statements-about-a-graph-original.yaml similarity index 90% rename from yaml/example-081-Identifying-and-making-statements-about-a-graph-original.yaml rename to yaml/example-082-Identifying-and-making-statements-about-a-graph-original.yaml index f5048d69..7c21bd02 100644 --- a/yaml/example-081-Identifying-and-making-statements-about-a-graph-original.yaml +++ b/yaml/example-082-Identifying-and-making-statements-about-a-graph-original.yaml @@ -1,4 +1,4 @@ -Example 081: Identifying and making statements about a graph-original +Example 082: Identifying and making statements about a graph-original --- "@context": generatedAt: diff --git a/yaml/example-082-Using-graph-to-explicitly-express-the-default-graph-expanded.yaml b/yaml/example-083-Using-graph-to-explicitly-express-the-default-graph-expanded.yaml similarity index 86% rename from yaml/example-082-Using-graph-to-explicitly-express-the-default-graph-expanded.yaml rename to yaml/example-083-Using-graph-to-explicitly-express-the-default-graph-expanded.yaml index e2eb6040..556505de 100644 --- a/yaml/example-082-Using-graph-to-explicitly-express-the-default-graph-expanded.yaml +++ b/yaml/example-083-Using-graph-to-explicitly-express-the-default-graph-expanded.yaml @@ -1,4 +1,4 @@ -Example 082: Using @graph to explicitly express the default graph-expanded +Example 083: Using @graph to explicitly express the default graph-expanded --- - "@id": http://manu.sporny.org/about#manu "@type": diff --git a/yaml/example-082-Using-graph-to-explicitly-express-the-default-graph-original.yaml b/yaml/example-083-Using-graph-to-explicitly-express-the-default-graph-original.yaml similarity index 84% rename from yaml/example-082-Using-graph-to-explicitly-express-the-default-graph-original.yaml rename to yaml/example-083-Using-graph-to-explicitly-express-the-default-graph-original.yaml index 35bc22fe..0fdec3a6 100644 --- a/yaml/example-082-Using-graph-to-explicitly-express-the-default-graph-original.yaml +++ b/yaml/example-083-Using-graph-to-explicitly-express-the-default-graph-original.yaml @@ -1,4 +1,4 @@ -Example 082: Using @graph to explicitly express the default graph-original +Example 083: Using @graph to explicitly express the default graph-original --- "@context": "@vocab": http://schema.org/ diff --git a/yaml/example-083-Context-needs-to-be-duplicated-if-graph-is-not-used-expanded.yaml b/yaml/example-084-Context-needs-to-be-duplicated-if-graph-is-not-used-expanded.yaml similarity index 86% rename from yaml/example-083-Context-needs-to-be-duplicated-if-graph-is-not-used-expanded.yaml rename to yaml/example-084-Context-needs-to-be-duplicated-if-graph-is-not-used-expanded.yaml index da47cadf..8715d605 100644 --- a/yaml/example-083-Context-needs-to-be-duplicated-if-graph-is-not-used-expanded.yaml +++ b/yaml/example-084-Context-needs-to-be-duplicated-if-graph-is-not-used-expanded.yaml @@ -1,4 +1,4 @@ -Example 083: Context needs to be duplicated if @graph is not used-expanded +Example 084: Context needs to be duplicated if @graph is not used-expanded --- - "@id": http://manu.sporny.org/about#manu "@type": diff --git a/yaml/example-083-Context-needs-to-be-duplicated-if-graph-is-not-used-original.yaml b/yaml/example-084-Context-needs-to-be-duplicated-if-graph-is-not-used-original.yaml similarity index 86% rename from yaml/example-083-Context-needs-to-be-duplicated-if-graph-is-not-used-original.yaml rename to yaml/example-084-Context-needs-to-be-duplicated-if-graph-is-not-used-original.yaml index 14a265da..704d0c20 100644 --- a/yaml/example-083-Context-needs-to-be-duplicated-if-graph-is-not-used-original.yaml +++ b/yaml/example-084-Context-needs-to-be-duplicated-if-graph-is-not-used-original.yaml @@ -1,4 +1,4 @@ -Example 083: Context needs to be duplicated if @graph is not used-original +Example 084: Context needs to be duplicated if @graph is not used-original --- - "@context": "@vocab": http://schema.org/ diff --git a/yaml/example-084-Implicitly-named-graph-expanded.yaml b/yaml/example-085-Implicitly-named-graph-expanded.yaml similarity index 94% rename from yaml/example-084-Implicitly-named-graph-expanded.yaml rename to yaml/example-085-Implicitly-named-graph-expanded.yaml index 138f8752..680ac981 100644 --- a/yaml/example-084-Implicitly-named-graph-expanded.yaml +++ b/yaml/example-085-Implicitly-named-graph-expanded.yaml @@ -1,4 +1,4 @@ -Example 084: Implicitly named graph-expanded +Example 085: Implicitly named graph-expanded --- - "@id": http://example.org/foaf-graph http://www.w3.org/ns/prov#generatedAtTime: diff --git a/yaml/example-084-Implicitly-named-graph-original.yaml b/yaml/example-085-Implicitly-named-graph-original.yaml similarity index 93% rename from yaml/example-084-Implicitly-named-graph-original.yaml rename to yaml/example-085-Implicitly-named-graph-original.yaml index 97b0b114..1dbd02c7 100644 --- a/yaml/example-084-Implicitly-named-graph-original.yaml +++ b/yaml/example-085-Implicitly-named-graph-original.yaml @@ -1,4 +1,4 @@ -Example 084: Implicitly named graph-original +Example 085: Implicitly named graph-original --- "@context": "@version": 1.1 diff --git a/yaml/example-085-Indexing-graph-data-in-JSON-LD-expanded.yaml b/yaml/example-086-Indexing-graph-data-in-JSON-LD-expanded.yaml similarity index 92% rename from yaml/example-085-Indexing-graph-data-in-JSON-LD-expanded.yaml rename to yaml/example-086-Indexing-graph-data-in-JSON-LD-expanded.yaml index 8e36ec20..3b21e513 100644 --- a/yaml/example-085-Indexing-graph-data-in-JSON-LD-expanded.yaml +++ b/yaml/example-086-Indexing-graph-data-in-JSON-LD-expanded.yaml @@ -1,4 +1,4 @@ -Example 085: Indexing graph data in JSON-LD-expanded +Example 086: Indexing graph data in JSON-LD-expanded --- - "@id": http://example.com/ "@type": diff --git a/yaml/example-085-Indexing-graph-data-in-JSON-LD-original.yaml b/yaml/example-086-Indexing-graph-data-in-JSON-LD-original.yaml similarity index 91% rename from yaml/example-085-Indexing-graph-data-in-JSON-LD-original.yaml rename to yaml/example-086-Indexing-graph-data-in-JSON-LD-original.yaml index ad1e6072..f978ce5c 100644 --- a/yaml/example-085-Indexing-graph-data-in-JSON-LD-original.yaml +++ b/yaml/example-086-Indexing-graph-data-in-JSON-LD-original.yaml @@ -1,4 +1,4 @@ -Example 085: Indexing graph data in JSON-LD-original +Example 086: Indexing graph data in JSON-LD-original --- "@context": "@version": 1.1 diff --git a/yaml/example-086-Indexing-graphs-using-none-for-no-index-expanded.yaml b/yaml/example-087-Indexing-graphs-using-none-for-no-index-expanded.yaml similarity index 91% rename from yaml/example-086-Indexing-graphs-using-none-for-no-index-expanded.yaml rename to yaml/example-087-Indexing-graphs-using-none-for-no-index-expanded.yaml index 61bb2b95..9625db7b 100644 --- a/yaml/example-086-Indexing-graphs-using-none-for-no-index-expanded.yaml +++ b/yaml/example-087-Indexing-graphs-using-none-for-no-index-expanded.yaml @@ -1,4 +1,4 @@ -Example 086: Indexing graphs using @none for no index-expanded +Example 087: Indexing graphs using @none for no index-expanded --- - "@id": http://example.com/ "@type": diff --git a/yaml/example-086-Indexing-graphs-using-none-for-no-index-original.yaml b/yaml/example-087-Indexing-graphs-using-none-for-no-index-original.yaml similarity index 90% rename from yaml/example-086-Indexing-graphs-using-none-for-no-index-original.yaml rename to yaml/example-087-Indexing-graphs-using-none-for-no-index-original.yaml index 43394bbd..1fd1451f 100644 --- a/yaml/example-086-Indexing-graphs-using-none-for-no-index-original.yaml +++ b/yaml/example-087-Indexing-graphs-using-none-for-no-index-original.yaml @@ -1,4 +1,4 @@ -Example 086: Indexing graphs using @none for no index-original +Example 087: Indexing graphs using @none for no index-original --- "@context": "@version": 1.1 diff --git a/yaml/example-087-Referencing-named-graphs-using-an-id-map-expanded.yaml b/yaml/example-088-Referencing-named-graphs-using-an-id-map-expanded.yaml similarity index 92% rename from yaml/example-087-Referencing-named-graphs-using-an-id-map-expanded.yaml rename to yaml/example-088-Referencing-named-graphs-using-an-id-map-expanded.yaml index 89b5db33..9aec2aa3 100644 --- a/yaml/example-087-Referencing-named-graphs-using-an-id-map-expanded.yaml +++ b/yaml/example-088-Referencing-named-graphs-using-an-id-map-expanded.yaml @@ -1,4 +1,4 @@ -Example 087: Referencing named graphs using an id map-expanded +Example 088: Referencing named graphs using an id map-expanded --- - "@id": http://example.org/foaf-graph http://www.w3.org/ns/prov#generatedAtTime: diff --git a/yaml/example-087-Referencing-named-graphs-using-an-id-map-original.yaml b/yaml/example-088-Referencing-named-graphs-using-an-id-map-original.yaml similarity index 92% rename from yaml/example-087-Referencing-named-graphs-using-an-id-map-original.yaml rename to yaml/example-088-Referencing-named-graphs-using-an-id-map-original.yaml index ffafefad..ef274b49 100644 --- a/yaml/example-087-Referencing-named-graphs-using-an-id-map-original.yaml +++ b/yaml/example-088-Referencing-named-graphs-using-an-id-map-original.yaml @@ -1,4 +1,4 @@ -Example 087: Referencing named graphs using an id map-original +Example 088: Referencing named graphs using an id map-original --- "@context": "@version": 1.1 diff --git a/yaml/example-088-Referencing-named-graphs-using-an-id-map-with-none-expanded.yaml b/yaml/example-089-Referencing-named-graphs-using-an-id-map-with-none-expanded.yaml similarity index 92% rename from yaml/example-088-Referencing-named-graphs-using-an-id-map-with-none-expanded.yaml rename to yaml/example-089-Referencing-named-graphs-using-an-id-map-with-none-expanded.yaml index 0c9bf3bb..bd3da04c 100644 --- a/yaml/example-088-Referencing-named-graphs-using-an-id-map-with-none-expanded.yaml +++ b/yaml/example-089-Referencing-named-graphs-using-an-id-map-with-none-expanded.yaml @@ -1,4 +1,4 @@ -Example 088: Referencing named graphs using an id map with @none-expanded +Example 089: Referencing named graphs using an id map with @none-expanded --- - "@id": http://example.org/foaf-graph http://www.w3.org/ns/prov#generatedAtTime: diff --git a/yaml/example-088-Referencing-named-graphs-using-an-id-map-with-none-original.yaml b/yaml/example-089-Referencing-named-graphs-using-an-id-map-with-none-original.yaml similarity index 92% rename from yaml/example-088-Referencing-named-graphs-using-an-id-map-with-none-original.yaml rename to yaml/example-089-Referencing-named-graphs-using-an-id-map-with-none-original.yaml index 8a1c8a21..9dcab62a 100644 --- a/yaml/example-088-Referencing-named-graphs-using-an-id-map-with-none-original.yaml +++ b/yaml/example-089-Referencing-named-graphs-using-an-id-map-with-none-original.yaml @@ -1,4 +1,4 @@ -Example 088: Referencing named graphs using an id map with @none-original +Example 089: Referencing named graphs using an id map with @none-original --- "@context": "@version": 1.1 diff --git a/yaml/example-089-Sample-JSON-LD-document-to-be-expanded.yaml b/yaml/example-090-Sample-JSON-LD-document-to-be-expanded.yaml similarity index 77% rename from yaml/example-089-Sample-JSON-LD-document-to-be-expanded.yaml rename to yaml/example-090-Sample-JSON-LD-document-to-be-expanded.yaml index cb8ed937..ed7521ed 100644 --- a/yaml/example-089-Sample-JSON-LD-document-to-be-expanded.yaml +++ b/yaml/example-090-Sample-JSON-LD-document-to-be-expanded.yaml @@ -1,4 +1,4 @@ -Example 089: Sample JSON-LD document to be expanded +Example 090: Sample JSON-LD document to be expanded --- "@context": name: http://xmlns.com/foaf/0.1/name diff --git a/yaml/example-090-Expanded-form-for-the-previous-example-expanded.yaml b/yaml/example-091-Expanded-form-for-the-previous-example-expanded.yaml similarity index 69% rename from yaml/example-090-Expanded-form-for-the-previous-example-expanded.yaml rename to yaml/example-091-Expanded-form-for-the-previous-example-expanded.yaml index f1678c74..1924bdec 100644 --- a/yaml/example-090-Expanded-form-for-the-previous-example-expanded.yaml +++ b/yaml/example-091-Expanded-form-for-the-previous-example-expanded.yaml @@ -1,4 +1,4 @@ -Example 090: Expanded form for the previous example-expanded +Example 091: Expanded form for the previous example-expanded --- - http://xmlns.com/foaf/0.1/name: - "@value": Manu Sporny diff --git a/yaml/example-091-Sample-expanded-JSON-LD-document.yaml b/yaml/example-092-Sample-expanded-JSON-LD-document.yaml similarity index 73% rename from yaml/example-091-Sample-expanded-JSON-LD-document.yaml rename to yaml/example-092-Sample-expanded-JSON-LD-document.yaml index 27002c43..4a70bee1 100644 --- a/yaml/example-091-Sample-expanded-JSON-LD-document.yaml +++ b/yaml/example-092-Sample-expanded-JSON-LD-document.yaml @@ -1,4 +1,4 @@ -Example 091: Sample expanded JSON-LD document +Example 092: Sample expanded JSON-LD document --- - http://xmlns.com/foaf/0.1/name: - Manu Sporny diff --git a/yaml/example-092-Sample-context.yaml b/yaml/example-093-Sample-context.yaml similarity index 82% rename from yaml/example-092-Sample-context.yaml rename to yaml/example-093-Sample-context.yaml index 1bbab58b..4d34641b 100644 --- a/yaml/example-092-Sample-context.yaml +++ b/yaml/example-093-Sample-context.yaml @@ -1,4 +1,4 @@ -Example 092: Sample context +Example 093: Sample context --- "@context": name: http://xmlns.com/foaf/0.1/name diff --git a/yaml/example-093-Compact-form-of-the-sample-document-once-sample-context-has-been-applied-original.yaml b/yaml/example-094-Compact-form-of-the-sample-document-once-sample-context-has-been-applied-original.yaml similarity index 77% rename from yaml/example-093-Compact-form-of-the-sample-document-once-sample-context-has-been-applied-original.yaml rename to yaml/example-094-Compact-form-of-the-sample-document-once-sample-context-has-been-applied-original.yaml index c8ccc71b..49878c5e 100644 --- a/yaml/example-093-Compact-form-of-the-sample-document-once-sample-context-has-been-applied-original.yaml +++ b/yaml/example-094-Compact-form-of-the-sample-document-once-sample-context-has-been-applied-original.yaml @@ -1,4 +1,4 @@ -Example 093: Compact form of the sample document once sample context has been applied-original +Example 094: Compact form of the sample document once sample context has been applied-original --- "@context": name: http://xmlns.com/foaf/0.1/name diff --git a/yaml/example-094-Sample-JSON-LD-document-to-be-flattened.yaml b/yaml/example-095-Sample-JSON-LD-document-to-be-flattened.yaml similarity index 82% rename from yaml/example-094-Sample-JSON-LD-document-to-be-flattened.yaml rename to yaml/example-095-Sample-JSON-LD-document-to-be-flattened.yaml index 07d71286..c79b74d9 100644 --- a/yaml/example-094-Sample-JSON-LD-document-to-be-flattened.yaml +++ b/yaml/example-095-Sample-JSON-LD-document-to-be-flattened.yaml @@ -1,4 +1,4 @@ -Example 094: Sample JSON-LD document to be flattened +Example 095: Sample JSON-LD document to be flattened --- "@context": name: http://xmlns.com/foaf/0.1/name diff --git a/yaml/example-095-Flattened-and-compacted-form-for-the-previous-example-original.yaml b/yaml/example-096-Flattened-and-compacted-form-for-the-previous-example-original.yaml similarity index 84% rename from yaml/example-095-Flattened-and-compacted-form-for-the-previous-example-original.yaml rename to yaml/example-096-Flattened-and-compacted-form-for-the-previous-example-original.yaml index f39b88e5..8a351e75 100644 --- a/yaml/example-095-Flattened-and-compacted-form-for-the-previous-example-original.yaml +++ b/yaml/example-096-Flattened-and-compacted-form-for-the-previous-example-original.yaml @@ -1,4 +1,4 @@ -Example 095: Flattened and compacted form for the previous example-original +Example 096: Flattened and compacted form for the previous example-original --- "@context": name: http://xmlns.com/foaf/0.1/name diff --git a/yaml/example-096-Sample-library-frame.yaml b/yaml/example-097-Sample-library-frame.yaml similarity index 80% rename from yaml/example-096-Sample-library-frame.yaml rename to yaml/example-097-Sample-library-frame.yaml index cd898d1f..77cb4293 100644 --- a/yaml/example-096-Sample-library-frame.yaml +++ b/yaml/example-097-Sample-library-frame.yaml @@ -1,4 +1,4 @@ -Example 096: Sample library frame +Example 097: Sample library frame --- "@context": "@version": 1.1 diff --git a/yaml/example-097-Flattened-library-objects.yaml b/yaml/example-098-Flattened-library-objects.yaml similarity index 93% rename from yaml/example-097-Flattened-library-objects.yaml rename to yaml/example-098-Flattened-library-objects.yaml index 9be32efe..6dd58d86 100644 --- a/yaml/example-097-Flattened-library-objects.yaml +++ b/yaml/example-098-Flattened-library-objects.yaml @@ -1,4 +1,4 @@ -Example 097: Flattened library objects +Example 098: Flattened library objects --- "@context": "@vocab": http://example.org/ diff --git a/yaml/example-098-Framed-library-objects-original.yaml b/yaml/example-099-Framed-library-objects-original.yaml similarity index 90% rename from yaml/example-098-Framed-library-objects-original.yaml rename to yaml/example-099-Framed-library-objects-original.yaml index fcd38cb2..a4c38d16 100644 --- a/yaml/example-098-Framed-library-objects-original.yaml +++ b/yaml/example-099-Framed-library-objects-original.yaml @@ -1,4 +1,4 @@ -Example 098: Framed library objects-original +Example 099: Framed library objects-original --- "@context": "@version": 1.1 diff --git a/yaml/example-103-Linked-Data-Dataset-compacted.yaml b/yaml/example-103-Linked-Data-Dataset-compacted.yaml new file mode 100644 index 00000000..fc675d4a --- /dev/null +++ b/yaml/example-103-Linked-Data-Dataset-compacted.yaml @@ -0,0 +1,28 @@ +Example 103: Linked Data Dataset-compacted +--- +"@context": +- http://schema.org/ +- "@base": http://example.com/ +"@graph": +- "@id": people/alice + gender: + - "@value": weiblich + "@language": de + - "@value": female + "@language": en + knows: + "@id": people/bob + name: Alice +- "@id": graphs/1 + "@graph": + "@id": people/alice + parent: + "@id": people/bob + name: Bob +- "@id": graphs/2 + "@graph": + "@id": people/bob + sibling: + name: Mary + sibling: + "@id": people/bob diff --git a/yaml/example-103-Linked-Data-Dataset-expanded.yaml b/yaml/example-103-Linked-Data-Dataset-expanded.yaml new file mode 100644 index 00000000..f4c8b494 --- /dev/null +++ b/yaml/example-103-Linked-Data-Dataset-expanded.yaml @@ -0,0 +1,27 @@ +Example 103: Linked Data Dataset-expanded +--- +- "@id": http://example.com/people/alice + http://schema.org/name: + - "@value": Alice + http://schema.org/gender: + - "@value": weiblich + "@language": de + - "@value": female + "@language": en + http://schema.org/knows: + - "@id": http://example.com/people/bob +- "@id": http://example.com/graphs/1 + "@graph": + - "@id": http://example.com/people/alice + http://schema.org/parent: + - "@id": http://example.com/people/bob + http://schema.org/name: + - "@value": Bob +- "@id": http://example.com/graphs/2 + "@graph": + - "@id": http://example.com/people/bob + http://schema.org/sibling: + - http://schema.org/name: + - "@value": Mary + http://schema.org/sibling: + - "@id": http://example.com/people/bob diff --git a/yaml/example-102-Sample-JSON-LD-document.yaml b/yaml/example-104-Sample-JSON-LD-document.yaml similarity index 87% rename from yaml/example-102-Sample-JSON-LD-document.yaml rename to yaml/example-104-Sample-JSON-LD-document.yaml index 65a47e97..e5096fac 100644 --- a/yaml/example-102-Sample-JSON-LD-document.yaml +++ b/yaml/example-104-Sample-JSON-LD-document.yaml @@ -1,4 +1,4 @@ -Example 102: Sample JSON-LD document +Example 104: Sample JSON-LD document --- "@context": name: http://xmlns.com/foaf/0.1/name diff --git a/yaml/example-103-Flattened-and-expanded-form-for-the-previous-example.yaml b/yaml/example-105-Flattened-and-expanded-form-for-the-previous-example.yaml similarity index 84% rename from yaml/example-103-Flattened-and-expanded-form-for-the-previous-example.yaml rename to yaml/example-105-Flattened-and-expanded-form-for-the-previous-example.yaml index 0ebaa967..ef837018 100644 --- a/yaml/example-103-Flattened-and-expanded-form-for-the-previous-example.yaml +++ b/yaml/example-105-Flattened-and-expanded-form-for-the-previous-example.yaml @@ -1,4 +1,4 @@ -Example 103: Flattened and expanded form for the previous example +Example 105: Flattened and expanded form for the previous example --- - "@id": _:b0 http://xmlns.com/foaf/0.1/name: Dave Longley diff --git a/yaml/example-106-The-same-set-of-statements-serialized-in-JSON-LD.yaml b/yaml/example-108-The-same-set-of-statements-serialized-in-JSON-LD.yaml similarity index 74% rename from yaml/example-106-The-same-set-of-statements-serialized-in-JSON-LD.yaml rename to yaml/example-108-The-same-set-of-statements-serialized-in-JSON-LD.yaml index f9ada0e8..6c96ff54 100644 --- a/yaml/example-106-The-same-set-of-statements-serialized-in-JSON-LD.yaml +++ b/yaml/example-108-The-same-set-of-statements-serialized-in-JSON-LD.yaml @@ -1,4 +1,4 @@ -Example 106: The same set of statements serialized in JSON-LD +Example 108: The same set of statements serialized in JSON-LD --- "@context": foaf: http://xmlns.com/foaf/0.1/ diff --git a/yaml/example-108-Same-embedding-example-in-JSON-LD.yaml b/yaml/example-110-Same-embedding-example-in-JSON-LD.yaml similarity index 80% rename from yaml/example-108-Same-embedding-example-in-JSON-LD.yaml rename to yaml/example-110-Same-embedding-example-in-JSON-LD.yaml index aa0b4159..808b4b20 100644 --- a/yaml/example-108-Same-embedding-example-in-JSON-LD.yaml +++ b/yaml/example-110-Same-embedding-example-in-JSON-LD.yaml @@ -1,4 +1,4 @@ -Example 108: Same embedding example in JSON-LD +Example 110: Same embedding example in JSON-LD --- "@context": foaf: http://xmlns.com/foaf/0.1/ diff --git a/yaml/example-109-JSON-LD-using-native-data-types-for-numbers-and-boolean-values.yaml b/yaml/example-111-JSON-LD-using-native-data-types-for-numbers-and-boolean-values.yaml similarity index 68% rename from yaml/example-109-JSON-LD-using-native-data-types-for-numbers-and-boolean-values.yaml rename to yaml/example-111-JSON-LD-using-native-data-types-for-numbers-and-boolean-values.yaml index 2f492a6a..d2dccefb 100644 --- a/yaml/example-109-JSON-LD-using-native-data-types-for-numbers-and-boolean-values.yaml +++ b/yaml/example-111-JSON-LD-using-native-data-types-for-numbers-and-boolean-values.yaml @@ -1,4 +1,4 @@ -Example 109: JSON-LD using native data types for numbers and boolean values +Example 111: JSON-LD using native data types for numbers and boolean values --- "@context": ex: http://example.com/vocab# diff --git a/yaml/example-112-Same-example-with-a-list-of-values-in-JSON-LD.yaml b/yaml/example-114-Same-example-with-a-list-of-values-in-JSON-LD.yaml similarity index 75% rename from yaml/example-112-Same-example-with-a-list-of-values-in-JSON-LD.yaml rename to yaml/example-114-Same-example-with-a-list-of-values-in-JSON-LD.yaml index cd78c3ef..be1e5ed5 100644 --- a/yaml/example-112-Same-example-with-a-list-of-values-in-JSON-LD.yaml +++ b/yaml/example-114-Same-example-with-a-list-of-values-in-JSON-LD.yaml @@ -1,4 +1,4 @@ -Example 112: Same example with a list of values in JSON-LD +Example 114: Same example with a list of values in JSON-LD --- "@context": foaf: http://xmlns.com/foaf/0.1/ diff --git a/yaml/example-114-Same-description-in-JSON-LD-context-shared-among-node-objects-.yaml b/yaml/example-116-Same-description-in-JSON-LD-context-shared-among-node-objects-.yaml similarity index 84% rename from yaml/example-114-Same-description-in-JSON-LD-context-shared-among-node-objects-.yaml rename to yaml/example-116-Same-description-in-JSON-LD-context-shared-among-node-objects-.yaml index 68aa3eef..f1998131 100644 --- a/yaml/example-114-Same-description-in-JSON-LD-context-shared-among-node-objects-.yaml +++ b/yaml/example-116-Same-description-in-JSON-LD-context-shared-among-node-objects-.yaml @@ -1,4 +1,4 @@ -Example 114: Same description in JSON-LD (context shared among node objects) +Example 116: Same description in JSON-LD (context shared among node objects) --- "@context": foaf: http://xmlns.com/foaf/0.1/ diff --git a/yaml/example-116-Same-book-description-in-JSON-LD-avoiding-contexts-.yaml b/yaml/example-118-Same-book-description-in-JSON-LD-avoiding-contexts-.yaml similarity index 92% rename from yaml/example-116-Same-book-description-in-JSON-LD-avoiding-contexts-.yaml rename to yaml/example-118-Same-book-description-in-JSON-LD-avoiding-contexts-.yaml index ad536e5d..d56a2c61 100644 --- a/yaml/example-116-Same-book-description-in-JSON-LD-avoiding-contexts-.yaml +++ b/yaml/example-118-Same-book-description-in-JSON-LD-avoiding-contexts-.yaml @@ -1,4 +1,4 @@ -Example 116: Same book description in JSON-LD (avoiding contexts) +Example 118: Same book description in JSON-LD (avoiding contexts) --- - "@id": http://purl.oreilly.com/works/45U8QJGZSQKDH8N "@type": http://purl.org/vocab/frbr/core#Work