diff --git a/CHANGELOG.md b/CHANGELOG.md index 9ac7d30..c4168d6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [2.0.0] - 2026-06-15 + +To generate Ruby and TypeScript version based on the UML model version 4.0.0. + ## [1.3.0] - 2026-06-15 To generate Ruby and TypeScript version based on the UML model version 3.5.0. @@ -24,12 +28,10 @@ To generate Ruby and TypeScript version based on the UML model version 3.4.0. - `getOperationsToImplementOrDeclare`. ### Changed - TypeScript: - Ensure the entry point, `src/index.ts`, is always regenerated on fresh builds. ### Fixed - TypeScript: - Fix setters for array properties so that all items are replaced. @@ -94,7 +96,8 @@ This release requires [data-model-uml version 2.1.0](https://github.com/datafood - Update dfc prefix in skos_parser and change dfc-b:hasName. - Change dfc-b:hasName to dfc-b:name in tests. -[unreleased]: https://github.com/datafoodconsortium/connector-codegen/compare/v1.3.0...HEAD +[unreleased]: https://github.com/datafoodconsortium/connector-codegen/compare/v2.0.0...HEAD +[2.0.0]: https://github.com/datafoodconsortium/connector-codegen/compare/v1.3.0...v2.0.0 [1.3.0]: https://github.com/datafoodconsortium/connector-codegen/compare/v1.2.0...v1.3.0 [1.2.0]: https://github.com/datafoodconsortium/connector-codegen/compare/v1.1.0...v1.2.0 [1.1.0]: https://github.com/datafoodconsortium/connector-codegen/compare/v1.0.1...v1.1.0 diff --git a/src/org/datafoodconsortium/connector/codegen/ruby/class.mtl b/src/org/datafoodconsortium/connector/codegen/ruby/class.mtl index 10cdf81..99ea287 100644 --- a/src/org/datafoodconsortium/connector/codegen/ruby/class.mtl +++ b/src/org/datafoodconsortium/connector/codegen/ruby/class.mtl @@ -7,16 +7,16 @@ [import org::datafoodconsortium::connector::codegen::ruby::classifier /] [template public generateClass(model: Model, aClass : Class)] -[file (getProperty('ruby_outputFolder_src') + 'connector_v1/' + generateFileName(aClass.name).concat('.rb'), false, 'UTF-8')] +[file (getProperty('ruby_outputFolder_src') + 'connector/' + generateFileName(aClass.name).concat('.rb'), false, 'UTF-8')] [generateLicence()/] [generateImports(aClass)/] -class DataFoodConsortium::ConnectorV1::[aClass.name.toUpperFirst()/][generateGeneralization(aClass)/] +class DataFoodConsortium::Connector::[aClass.name.toUpperFirst()/][generateGeneralization(aClass)/] [if (aClass.isSemantic() and aClass.generalization->isEmpty())] include VirtualAssembly::Semantizer::SemanticObject [/if] [if (aClass.isSKOSConceptClass())] - include DataFoodConsortium::ConnectorV1::SKOSHelper + include DataFoodConsortium::Connector::SKOSHelper [/if] [if (aClass.isSemantic())] @@ -41,5 +41,5 @@ end [/template] [template public generateGeneralization(classifier: Classifier)] -[if (not (classifier.generalization->isEmpty()))] < [for (generalization: Generalization | classifier.generalization) separator(', ')]DataFoodConsortium::ConnectorV1::[generalization.general.name/][/for][/if] +[if (not (classifier.generalization->isEmpty()))] < [for (generalization: Generalization | classifier.generalization) separator(', ')]DataFoodConsortium::Connector::[generalization.general.name/][/for][/if] [/template] diff --git a/src/org/datafoodconsortium/connector/codegen/ruby/classifier.mtl b/src/org/datafoodconsortium/connector/codegen/ruby/classifier.mtl index c5e1e88..8574c3a 100644 --- a/src/org/datafoodconsortium/connector/codegen/ruby/classifier.mtl +++ b/src/org/datafoodconsortium/connector/codegen/ruby/classifier.mtl @@ -7,7 +7,7 @@ [template public generateImports(classifier: Classifier)] [for (ei: ElementImport | classifier.elementImport->sortedBy(i: ElementImport | i.importedElement.name)) separator('\n')][if (ei.importedElement.oclIsTypeOf(Class))][generateImport(ei)/][/if][/for] [if (classifier.oclIsTypeOf(Class))]require "virtual_assembly/semantizer"[/if] -[if (classifier.isSKOSConceptClass())]require 'datafoodconsortium/connector_v1/skos_helper'[/if] +[if (classifier.isSKOSConceptClass())]require 'datafoodconsortium/connector/skos_helper'[/if] [/template] -[template public generateImport(ei: ElementImport)]require "datafoodconsortium/connector_v1/[generateFileName(ei.importedElement.name) /]"[/template] +[template public generateImport(ei: ElementImport)]require "datafoodconsortium/connector/[generateFileName(ei.importedElement.name) /]"[/template] diff --git a/src/org/datafoodconsortium/connector/codegen/ruby/generate.mtl b/src/org/datafoodconsortium/connector/codegen/ruby/generate.mtl index f1f3020..8105850 100644 --- a/src/org/datafoodconsortium/connector/codegen/ruby/generate.mtl +++ b/src/org/datafoodconsortium/connector/codegen/ruby/generate.mtl @@ -8,16 +8,16 @@ [template public generateRuby(model: Model)] [for (aClass: Class | model.getClasses())][generateClass(model, aClass)/][/for] -[file (getProperty('ruby_outputFolder_src') + 'connector_v1.rb', false, 'UTF-8')] +[file (getProperty('ruby_outputFolder_src') + 'connector.rb', false, 'UTF-8')] module DataFoodConsortium - module ConnectorV1 - require 'datafoodconsortium/connector_v1/connector' - require 'datafoodconsortium/connector_v1/json_ld_serializer' - require 'datafoodconsortium/connector_v1/skos_parser_element' - require 'datafoodconsortium/connector_v1/skos_parser' + module Connector + require 'datafoodconsortium/connector/connector' + require 'datafoodconsortium/connector/json_ld_serializer' + require 'datafoodconsortium/connector/skos_parser_element' + require 'datafoodconsortium/connector/skos_parser' [for (ip: PackageImport | model.packageImport->select(pi: PackageImport | pi.importedPackage.name <> 'org.datafoodconsortium.semantizer')->sortedBy(i: PackageImport | i.importedPackage.name))] [for (member: NamedElement | ip.importedPackage.ownedMember->addAll(model.ownedMember)->select(ne: NamedElement | ne.oclIsTypeOf(Class))->sortedBy(m: NamedElement | m.name))] - require 'datafoodconsortium/connector_v1/[generateFileName(member.name) /].rb' + require 'datafoodconsortium/connector/[generateFileName(member.name) /].rb' [/for] [/for] diff --git a/src/org/datafoodconsortium/connector/codegen/ruby/static/.github/workflows/ruby.yml b/src/org/datafoodconsortium/connector/codegen/ruby/static/.github/workflows/ruby.yml index f71629c..b960903 100644 --- a/src/org/datafoodconsortium/connector/codegen/ruby/static/.github/workflows/ruby.yml +++ b/src/org/datafoodconsortium/connector/codegen/ruby/static/.github/workflows/ruby.yml @@ -15,7 +15,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - ruby-version: ['3.2', '3.3', '3.4'] + ruby-version: ['3.3', '3.4', '4.0'] steps: - uses: actions/checkout@v3 diff --git a/src/org/datafoodconsortium/connector/codegen/ruby/static/CHANGELOG.md b/src/org/datafoodconsortium/connector/codegen/ruby/static/CHANGELOG.md index 04b7500..909c34a 100644 --- a/src/org/datafoodconsortium/connector/codegen/ruby/static/CHANGELOG.md +++ b/src/org/datafoodconsortium/connector/codegen/ruby/static/CHANGELOG.md @@ -7,7 +7,55 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] -## [1.4.0] - 2026-06-15 +## [2.0.0] - 2026-06-16 + +This version has been generated using: + +- [Connector code generator v2 branch](https://github.com/datafoodconsortium/connector-codegen/tree/v2). +- [UML data model PR 29](https://github.com/datafoodconsortium/data-model-uml/pull/29). + +**This version contains breaking changes introduced by the ontology, see below.** + +### Added + +Classes: +- Add `ical:Vevent` +- Add `ical:Value_RECUR` +- Add `geo:Feature` +- Add `geo:Properties` +- Add `geo:Geometry` +- Add `geo:Point` +- Add `geo:Polygon` +- Add `Certification` +- Add `DeliveryStep` +- Add `Organization` +- Add `PickUpStep` +- Add `ProductOption` +- Add `ProductOptionValue` +- Add `Route` +- Add `TemplateSaleSession` +- Add `Variant` +- Add `VariantCaracteristic` + +Properties: +- Add `Catalog:startDate` +- Add `PlannedLocalTransformation:startDate` +- Add `RealizedTransformation:startDate` +- Add `SuppliedProduct:referenceOf`. +- Add `TechnicalProduct:referenceOf`. + +### Changed + +- `Stock:availabilityDate` is now a 1-1 property (**BREAKING CHANGE**) +- `PaymentMethod:paymentMethodProvider` is now a 1-1 property (**BREAKING CHANGE**) +- `PaymentMethod:paymentMethodType` is now a 1-1 property (**BREAKING CHANGE**) +- `Variant:isVariantOf is now a `Variant` instead of `DefinedProduct` (**BREAKING CHANGE**) + +### Removed + +- Removed the `Enterprise` class. It was renamed to `Organization` (**BREAKING CHANGE**) + +## [1.4.0] - 2026-05-21 Generated from [UML model 3.5.0](https://github.com/datafoodconsortium/data-model-uml/releases/tag/v3.5.0) using the [Connector codegen 1.3.0](https://github.com/datafoodconsortium/connector-codegen/releases/tag/v1.3.0). @@ -63,16 +111,16 @@ Tests: ### Changed -- `Address:country` is now a `ISKOSConcept` to reflect ontology v1.16 state (**breaking change**). -- Rename `hasIncome` -> `hasInput` and `hasOutcome` -> `hasOutput` in `PlannedTransformation` (**breaking change**). -- Rename `incomeOf` > `inputOf` in `PlannedConsumptionFlow` (**breaking change**). -- Rename `outcomeOf` -> `outpufOf` in `PlannedProductionFlow` (**breaking change**). -- Rename `PhysicalPlace:addresses` to `PhysicalPlace:address` (singular) to support correct cardinatility (**breaking change**). -- Rename `PhysicalPlace:mainContact` to `PhysicalPlace:mainContacts` (plural) to support correct cardinatility (**breaking change**). +- `Address:country` is now a `ISKOSConcept` to reflect ontology v1.16 state (**BREAKING CHANGE**). +- Rename `hasIncome` -> `hasInput` and `hasOutcome` -> `hasOutput` in `PlannedTransformation` (**BREAKING CHANGE**). +- Rename `incomeOf` > `inputOf` in `PlannedConsumptionFlow` (**BREAKING CHANGE**). +- Rename `outcomeOf` -> `outpufOf` in `PlannedProductionFlow` (**BREAKING CHANGE**). +- Rename `PhysicalPlace:addresses` to `PhysicalPlace:address` (singular) to support correct cardinatility (**BREAKING CHANGE**). +- Rename `PhysicalPlace:mainContact` to `PhysicalPlace:mainContacts` (plural) to support correct cardinatility (**BREAKING CHANGE**). ### Removed -- Remove the `Quantity` class as there is no such class in the ontology. We should use `QuantitativeValue` (**breaking change**). +- Remove the `Quantity` class as there is no such class in the ontology. We should use `QuantitativeValue` (**BREAKING CHANGE**). ## [1.3.0] - 2025-12-17 @@ -258,7 +306,8 @@ This version has been generated using the [code generator](https://github.com/da - Initial version of this library. -[unreleased]: https://github.com/datafoodconsortium/connector-ruby/compare/v1.4.0...HEAD +[unreleased]: https://github.com/datafoodconsortium/connector-ruby/compare/v2.0.0...HEAD +[2.0.0]: https://github.com/datafoodconsortium/connector-ruby/compare/v1.4.0...v2.0.0 [1.4.0]: https://github.com/datafoodconsortium/connector-ruby/compare/v1.3.0...v1.4.0 [1.3.0]: https://github.com/datafoodconsortium/connector-ruby/compare/v1.2.0...v1.3.0 [1.2.0]: https://github.com/datafoodconsortium/connector-ruby/compare/v1.1.0...v1.2.0 diff --git a/src/org/datafoodconsortium/connector/codegen/ruby/static/Gemfile.lock b/src/org/datafoodconsortium/connector/codegen/ruby/static/Gemfile.lock index c583eec..90db564 100644 --- a/src/org/datafoodconsortium/connector/codegen/ruby/static/Gemfile.lock +++ b/src/org/datafoodconsortium/connector/codegen/ruby/static/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - datafoodconsortium-connector-v1 (1.4.0.pre.beta8) + datafoodconsortium-connector (2.0.0.pre.beta8) virtual_assembly-semantizer (~> 1.0, >= 1.0.5) GEM @@ -59,13 +59,13 @@ PLATFORMS x86_64-linux DEPENDENCIES - datafoodconsortium-connector-v1! + datafoodconsortium-connector! rspec CHECKSUMS bcp47_spec (0.2.1) sha256=3fd62edf96c126bd9624e4319ac74082a966081859d1ee0ef3c3041640a37810 bigdecimal (3.3.1) sha256=eaa01e228be54c4f9f53bf3cc34fe3d5e845c31963e7fcc5bedb05a4e7d52218 - datafoodconsortium-connector-v1 (1.4.0.pre.beta8) + datafoodconsortium-connector (2.0.0.pre.beta8) diff-lcs (1.6.2) sha256=9ae0d2cba7d4df3075fe8cd8602a8604993efc0dfa934cff568969efb1909962 htmlentities (4.4.2) sha256=bbafbdf69f2eca9262be4efef7e43e6a1de54c95eb600f26984f71d2fe96c5c3 io-console (0.8.2) sha256=d6e3ae7a7cc7574f4b8893b4fca2162e57a825b223a177b7afa236c5ef9814cc diff --git a/src/org/datafoodconsortium/connector/codegen/ruby/static/README.md b/src/org/datafoodconsortium/connector/codegen/ruby/static/README.md index 8b6d7fd..dc7da52 100644 --- a/src/org/datafoodconsortium/connector/codegen/ruby/static/README.md +++ b/src/org/datafoodconsortium/connector/codegen/ruby/static/README.md @@ -237,6 +237,6 @@ The Pull Requests should be made on our [source code generator repository](https To make the lockfile (*Gemfile.lock*), type `bundler lock`. -To generate the *.gem*, type `gem build connector_v1.gemspec`. +To generate the *.gem*, type `gem build connector.gemspec`. To push the generated gem to rubygem.org, type `gem push -k dfc datafoodconsortium-connector-<...>.gem` where *dfc* is your credential key. \ No newline at end of file diff --git a/src/org/datafoodconsortium/connector/codegen/ruby/static/connector_v1.gemspec b/src/org/datafoodconsortium/connector/codegen/ruby/static/connector.gemspec similarity index 57% rename from src/org/datafoodconsortium/connector/codegen/ruby/static/connector_v1.gemspec rename to src/org/datafoodconsortium/connector/codegen/ruby/static/connector.gemspec index f587159..8da0c62 100644 --- a/src/org/datafoodconsortium/connector/codegen/ruby/static/connector_v1.gemspec +++ b/src/org/datafoodconsortium/connector/codegen/ruby/static/connector.gemspec @@ -1,19 +1,19 @@ Gem::Specification.new do |s| - s.name = "datafoodconsortium-connector-v1" - s.version = "1.4.0-beta8" - s.summary = "Data Food Consortium connector version 1 (legacy)" + s.name = "datafoodconsortium-connector" + s.version = "2.0.0-beta8" + s.summary = "Data Food Consortium connector" s.description = "A library to easily integrate the DFC standard within your application." s.authors = ["Maxime Lecoq", "Maikel Linke"] s.email = "maxime@lecoqlibre.fr" s.files = Dir["lib/**/*.*"] - s.homepage = "https://github.com/datafoodconsortium/connector-ruby/releases/tag/v1.4.0" + s.homepage = "https://github.com/datafoodconsortium/connector-ruby/" s.license = "MIT" s.metadata = { "changelog_uri" => - "https://github.com/datafoodconsortium/connector-ruby/releases/tag/v1.4.0/blob/main/CHANGELOG.md", + "https://github.com/datafoodconsortium/connector-ruby/blob/main/CHANGELOG.md", "source_code_uri" => - "https://github.com/datafoodconsortium/connector-ruby/releases/tag/v1.4.0/", + "https://github.com/datafoodconsortium/connector-ruby/", } s.add_runtime_dependency "virtual_assembly-semantizer", "~> 1.0", ">= 1.0.5" diff --git a/src/org/datafoodconsortium/connector/codegen/ruby/static/lib/datafoodconsortium/connector_v1/connector.rb b/src/org/datafoodconsortium/connector/codegen/ruby/static/lib/datafoodconsortium/connector/connector.rb similarity index 92% rename from src/org/datafoodconsortium/connector/codegen/ruby/static/lib/datafoodconsortium/connector_v1/connector.rb rename to src/org/datafoodconsortium/connector/codegen/ruby/static/lib/datafoodconsortium/connector/connector.rb index a5a3ac8..43fe2db 100644 --- a/src/org/datafoodconsortium/connector/codegen/ruby/static/lib/datafoodconsortium/connector_v1/connector.rb +++ b/src/org/datafoodconsortium/connector/codegen/ruby/static/lib/datafoodconsortium/connector/connector.rb @@ -21,11 +21,11 @@ # SOFTWARE. require 'singleton' -require 'datafoodconsortium/connector_v1/context' -require 'datafoodconsortium/connector_v1/importer' -require 'datafoodconsortium/connector_v1/json_ld_serializer' +require 'datafoodconsortium/connector/context' +require 'datafoodconsortium/connector/importer' +require 'datafoodconsortium/connector/json_ld_serializer' -module DataFoodConsortium::ConnectorV1 +module DataFoodConsortium::Connector class Connector include Singleton diff --git a/src/org/datafoodconsortium/connector/codegen/ruby/static/lib/datafoodconsortium/connector_v1/context.rb b/src/org/datafoodconsortium/connector/codegen/ruby/static/lib/datafoodconsortium/connector/context.rb similarity index 58% rename from src/org/datafoodconsortium/connector/codegen/ruby/static/lib/datafoodconsortium/connector_v1/context.rb rename to src/org/datafoodconsortium/connector/codegen/ruby/static/lib/datafoodconsortium/connector/context.rb index 37033e8..5c3ccc6 100644 --- a/src/org/datafoodconsortium/connector/codegen/ruby/static/lib/datafoodconsortium/connector_v1/context.rb +++ b/src/org/datafoodconsortium/connector/codegen/ruby/static/lib/datafoodconsortium/connector/context.rb @@ -3,15 +3,15 @@ require 'json/ld' module DataFoodConsortium - module ConnectorV1 + module Connector # Preload the DFC context. # # Similar to: https://github.com/ruby-rdf/json-ld-preloaded/ class Context < JSON::LD::Context - URL = "https://w3id.org/dfc/ontology/context/context_1.16.0.json" - URL_NORMALISED = "http://w3id.org/dfc/ontology/context/context_1.16.0.json" + URL = "https://w3id.org/dfc/ontology/context/context_2.0.0.json" + URL_NORMALISED = "http://w3id.org/dfc/ontology/context/context_2.0.0.json" - # All context URIs have to use http because https is normalised to http + # All context URIs have to use http because https is normalised to http # during the lookup of preloaded contexts. # And if the URI doesn't have a path, it must end with `/`. add_preloaded(URL_NORMALISED) { parse(json) } @@ -21,20 +21,12 @@ class Context < JSON::LD::Context # This is the current file the DFC website refers to in a link header. alias_preloaded( - "http://www.datafoodconsortium.org/wp-content/plugins/wordpress-context-jsonld/context_1.16.0.jsonld", + "http://www.datafoodconsortium.org/wp-content/plugins/wordpress-context-jsonld/context_2.0.0.jsonld", URL_NORMALISED ) - # This was the file the DFC website refers to in a link header. alias_preloaded( - "http://www.datafoodconsortium.org/wp-content/plugins/wordpress-context-jsonld/context.jsonld", - URL_NORMALISED - ) - - # This is the old URL that's not online anymore. - # Keep it for compatiblity with all versions before 1.8. - alias_preloaded( - "http://static.datafoodconsortium.org/ontologies/context.json", + "https://cdn.jsdelivr.net/gh/datafoodconsortium/ontology/context/context_2.0.0.json", URL_NORMALISED ) @@ -44,8 +36,8 @@ def self.inputContext end def self.json - @json ||= JSON.parse(File.read("#{__dir__}/context_1.16.0.json"))["@context"] + @json ||= JSON.parse(File.read("#{__dir__}/context_2.0.0.json"))["@context"] end end end -end +end \ No newline at end of file diff --git a/src/org/datafoodconsortium/connector/codegen/ruby/static/lib/datafoodconsortium/connector_v1/context_1.16.0.json b/src/org/datafoodconsortium/connector/codegen/ruby/static/lib/datafoodconsortium/connector/context_2.0.0.json similarity index 84% rename from src/org/datafoodconsortium/connector/codegen/ruby/static/lib/datafoodconsortium/connector_v1/context_1.16.0.json rename to src/org/datafoodconsortium/connector/codegen/ruby/static/lib/datafoodconsortium/connector/context_2.0.0.json index ffce5c4..2e21239 100644 --- a/src/org/datafoodconsortium/connector/codegen/ruby/static/lib/datafoodconsortium/connector_v1/context_1.16.0.json +++ b/src/org/datafoodconsortium/connector/codegen/ruby/static/lib/datafoodconsortium/connector/context_2.0.0.json @@ -2,14 +2,14 @@ "@context": { "rdfs": "http://www.w3.org/2000/01/rdf-schema#", "skos" : "http://www.w3.org/2004/02/skos/core#", - "dfc": "https://github.com/datafoodconsortium/ontology/releases/latest/download/DFC_FullModel.owl#", + "dfc": "http://w3id.org/dfc/ontology/DFC_FullModel.owl#", "dc": "http://purl.org/dc/elements/1.1/#", - "dfc-b": "https://github.com/datafoodconsortium/ontology/releases/latest/download/DFC_BusinessOntology.owl#", - "dfc-t": "https://github.com/datafoodconsortium/ontology/releases/latest/download/DFC_TechnicalOntology.owl#", - "dfc-m": "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/measures.rdf#", - "dfc-pt": "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#", - "dfc-f": "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#", - "dfc-v": "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/vocabulary.rdf#", + "dfc-b": "http://w3id.org/dfc/ontology/v2.0.0/src/DFC_BusinessOntology.owl#", + "dfc-t": "http://w3id.org/dfc/ontology/v2.0.0/src/DFC_TechnicalOntology.owl#", + "dfc-m": "http://w3id.org/dfc/taxonomies/v2.0.0/measures.rdf#", + "dfc-pt": "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#", + "dfc-f": "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#", + "dfc-v": "http://w3id.org/dfc/taxonomies/v2.0.0/vocabulary.rdf#", "ontosec": "http://www.semanticweb.org/ontologies/2008/11/OntologySecurity.owl#", "dfc-b:DFC_BusinessOntology_ObjectProperty": { "@type": "@id" @@ -41,6 +41,9 @@ "dfc-b:certificateOf": { "@type": "@id" }, + "dfc-b:certifies": { + "@type": "@id" + }, "dfc-b:characteristicOf": { "@type": "@id" }, @@ -89,6 +92,9 @@ "dfc-b:deliveredAt": { "@type": "@id" }, + "dfc-b:delivery": { + "@type": "@id" + }, "dfc-b:endsAt": { "@type": "@id" }, @@ -140,6 +146,9 @@ "dfc-b:hasFulfilmentStatus": { "@type": "@id" }, + "dfc-b:hasGeoJsonFeature": { + "@type": "@id" + }, "dfc-b:hasGeographicalOrigin": { "@type": "@id" }, @@ -158,6 +167,9 @@ "dfc-b:hasMainContact": { "@type": "@id" }, + "dfc-b:hasMember": { + "@type": "@id" + }, "dfc-b:hasNatureOrigin": { "@type": "@id" }, @@ -206,7 +218,10 @@ "dfc-b:hasPrice": { "@type": "@id" }, - "dfc-b:hasProcess": { + "dfc-b:hasProductOption": { + "@type": "@id" + }, + "dfc-b:hasProductOptionValue": { "@type": "@id" }, "dfc-b:hasQuantity": { @@ -215,15 +230,27 @@ "dfc-b:hasReference": { "@type": "@id" }, + "dfc-b:hasReferenceProductOption": { + "@type": "@id" + }, + "dfc-b:hasReferenceProductOptionValue": { + "@type": "@id" + }, "dfc-b:hasSocialMedia": { "@type": "@id" }, "dfc-b:hasStatus": { "@type": "@id" }, + "dfc-b:hasStep": { + "@type": "@id" + }, "dfc-b:hasTemperature": { "@type": "@id" }, + "dfc-b:hasTemplateSaleSession": { + "@type": "@id" + }, "dfc-b:hasTransformationType": { "@type": "@id" }, @@ -236,6 +263,9 @@ "dfc-b:hasVariant": { "@type": "@id" }, + "dfc-b:hasVariantCaracteristic": { + "@type": "@id" + }, "dfc-b:holds": { "@type": "@id" }, @@ -263,12 +293,18 @@ "dfc-b:isAvailableDuring": { "@type": "@id" }, + "dfc-b:isCertifiedBy": { + "@type": "@id" + }, "dfc-b:isFulfilledBy": { "@type": "@id" }, "dfc-b:isIngredientOf": { "@type": "@id" }, + "dfc-b:isMemberOf": { + "@type": "@id" + }, "dfc-b:isOpenDuring": { "@type": "@id" }, @@ -278,9 +314,15 @@ "dfc-b:isShippedIn": { "@type": "@id" }, + "dfc-b:isStepOf": { + "@type": "@id" + }, "dfc-b:isTemperatureOf": { "@type": "@id" }, + "dfc-b:isTemplateSaleSessionOf": { + "@type": "@id" + }, "dfc-b:isVariantOf": { "@type": "@id" }, @@ -365,6 +407,9 @@ "dfc-b:physicalCharacteristicOf": { "@type": "@id" }, + "dfc-b:pickUp": { + "@type": "@id" + }, "dfc-b:pickedUpAt": { "@type": "@id" }, @@ -473,6 +518,12 @@ "dfc-b:typeOf": { "@type": "@id" }, + "dfc-b:useVehicle": { + "@type": "@id" + }, + "dfc-b:usedInRoute": { + "@type": "@id" + }, "dfc-b:uses": { "@type": "@id" }, diff --git a/src/org/datafoodconsortium/connector/codegen/ruby/static/lib/datafoodconsortium/connector_v1/importer.rb b/src/org/datafoodconsortium/connector/codegen/ruby/static/lib/datafoodconsortium/connector/importer.rb similarity index 90% rename from src/org/datafoodconsortium/connector/codegen/ruby/static/lib/datafoodconsortium/connector_v1/importer.rb rename to src/org/datafoodconsortium/connector/codegen/ruby/static/lib/datafoodconsortium/connector/importer.rb index 7e184f4..244339d 100644 --- a/src/org/datafoodconsortium/connector/codegen/ruby/static/lib/datafoodconsortium/connector_v1/importer.rb +++ b/src/org/datafoodconsortium/connector/codegen/ruby/static/lib/datafoodconsortium/connector/importer.rb @@ -3,12 +3,12 @@ require_relative "skos_parser" module DataFoodConsortium - module ConnectorV1 + module Connector class Importer def self.type_map unless @type_map @type_map = {} - DataFoodConsortium::ConnectorV1.semantic_types.each do |type| + DataFoodConsortium::Connector.semantic_types.each do |type| register_type(type) end end @@ -100,9 +100,9 @@ def skos_concept(object) return unless object.uri? id = object.value.sub( - "http://static.datafoodconsortium.org/data/measures.rdf#", "dfc-m:" + "http://w3id.org/dfc/taxonomies/v2.0.0/measures.rdf#", "dfc-m:" ).sub( - "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/measures.rdf#", + "http://w3id.org/dfc/taxonomies/measures.rdf#", "dfc-m:" ) SKOSParser.concepts[id] diff --git a/src/org/datafoodconsortium/connector/codegen/ruby/static/lib/datafoodconsortium/connector_v1/json_ld_serializer.rb b/src/org/datafoodconsortium/connector/codegen/ruby/static/lib/datafoodconsortium/connector/json_ld_serializer.rb similarity index 97% rename from src/org/datafoodconsortium/connector/codegen/ruby/static/lib/datafoodconsortium/connector_v1/json_ld_serializer.rb rename to src/org/datafoodconsortium/connector/codegen/ruby/static/lib/datafoodconsortium/connector/json_ld_serializer.rb index 229a483..74797c4 100644 --- a/src/org/datafoodconsortium/connector/codegen/ruby/static/lib/datafoodconsortium/connector_v1/json_ld_serializer.rb +++ b/src/org/datafoodconsortium/connector/codegen/ruby/static/lib/datafoodconsortium/connector/json_ld_serializer.rb @@ -23,7 +23,7 @@ require 'virtual_assembly/semantizer' require 'json/ld' -class DataFoodConsortium::ConnectorV1::JsonLdSerializer +class DataFoodConsortium::Connector::JsonLdSerializer def initialize(outputContext = nil, inputContext = nil) @outputContext = outputContext diff --git a/src/org/datafoodconsortium/connector/codegen/ruby/static/lib/datafoodconsortium/connector_v1/skos_helper.rb b/src/org/datafoodconsortium/connector/codegen/ruby/static/lib/datafoodconsortium/connector/skos_helper.rb similarity index 84% rename from src/org/datafoodconsortium/connector/codegen/ruby/static/lib/datafoodconsortium/connector_v1/skos_helper.rb rename to src/org/datafoodconsortium/connector/codegen/ruby/static/lib/datafoodconsortium/connector/skos_helper.rb index 3659422..1d4a7e4 100644 --- a/src/org/datafoodconsortium/connector/codegen/ruby/static/lib/datafoodconsortium/connector_v1/skos_helper.rb +++ b/src/org/datafoodconsortium/connector/codegen/ruby/static/lib/datafoodconsortium/connector/skos_helper.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -module DataFoodConsortium::ConnectorV1::SKOSHelper +module DataFoodConsortium::Connector::SKOSHelper def addAttribute(name, value) self.instance_variable_set("@#{name}", value) self.define_singleton_method(name) do diff --git a/src/org/datafoodconsortium/connector/codegen/ruby/static/lib/datafoodconsortium/connector_v1/skos_parser.rb b/src/org/datafoodconsortium/connector/codegen/ruby/static/lib/datafoodconsortium/connector/skos_parser.rb similarity index 85% rename from src/org/datafoodconsortium/connector/codegen/ruby/static/lib/datafoodconsortium/connector_v1/skos_parser.rb rename to src/org/datafoodconsortium/connector/codegen/ruby/static/lib/datafoodconsortium/connector/skos_parser.rb index 48c460d..22c1db3 100644 --- a/src/org/datafoodconsortium/connector/codegen/ruby/static/lib/datafoodconsortium/connector_v1/skos_parser.rb +++ b/src/org/datafoodconsortium/connector/codegen/ruby/static/lib/datafoodconsortium/connector/skos_parser.rb @@ -22,12 +22,12 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. -require 'datafoodconsortium/connector_v1/skos_helper' -require 'datafoodconsortium/connector_v1/skos_concept' -require 'datafoodconsortium/connector_v1/skos_parser_element' +require 'datafoodconsortium/connector/skos_helper' +require 'datafoodconsortium/connector/skos_concept' +require 'datafoodconsortium/connector/skos_parser_element' -class DataFoodConsortium::ConnectorV1::SKOSInstance - include DataFoodConsortium::ConnectorV1::SKOSHelper +class DataFoodConsortium::Connector::SKOSInstance + include DataFoodConsortium::Connector::SKOSHelper # Return a list of singelton methods, ie the list of Concept available def topConcepts @@ -35,7 +35,7 @@ def topConcepts end end -class DataFoodConsortium::ConnectorV1::SKOSParser +class DataFoodConsortium::Connector::SKOSParser CONCEPT_SCHEMES = ["Facet", "productTypes"].freeze def self.concepts @@ -43,7 +43,7 @@ def self.concepts end def initialize - @results = DataFoodConsortium::ConnectorV1::SKOSInstance.new + @results = DataFoodConsortium::Connector::SKOSInstance.new @skosConcepts = {} @rootElements = [] @broaders = {} @@ -56,7 +56,7 @@ def parse(data) init data.each do |element| - current = DataFoodConsortium::ConnectorV1::SKOSParserElement.new(element) + current = DataFoodConsortium::Connector::SKOSParserElement.new(element) setSkosConceptFlag(current) @@ -91,7 +91,7 @@ def parse(data) protected def createSKOSConcept(element) - skosConcept = DataFoodConsortium::ConnectorV1::SKOSConcept.new( + skosConcept = DataFoodConsortium::Connector::SKOSConcept.new( element.id, broaders: element.broader, narrowers: element.narrower, prefLabels: element.label ) skosConcept.semanticType = element.type @@ -123,7 +123,7 @@ def getValueWithoutPrefix(property) private def init - @results = DataFoodConsortium::ConnectorV1::SKOSInstance.new + @results = DataFoodConsortium::Connector::SKOSInstance.new @skosConcepts = {} @rootElements = [] @broaders = {} @@ -137,7 +137,7 @@ def setResults(parent, id) if @useSkosConcept && @skosConcepts[id] parent.addAttribute(name, @skosConcepts[id]) else - parent.addAttribute(name, DataFoodConsortium::ConnectorV1::SKOSInstance.new) + parent.addAttribute(name, DataFoodConsortium::Connector::SKOSInstance.new) end end diff --git a/src/org/datafoodconsortium/connector/codegen/ruby/static/lib/datafoodconsortium/connector_v1/skos_parser_element.rb b/src/org/datafoodconsortium/connector/codegen/ruby/static/lib/datafoodconsortium/connector/skos_parser_element.rb similarity index 98% rename from src/org/datafoodconsortium/connector/codegen/ruby/static/lib/datafoodconsortium/connector_v1/skos_parser_element.rb rename to src/org/datafoodconsortium/connector/codegen/ruby/static/lib/datafoodconsortium/connector/skos_parser_element.rb index 97b5d57..1d4b646 100644 --- a/src/org/datafoodconsortium/connector/codegen/ruby/static/lib/datafoodconsortium/connector_v1/skos_parser_element.rb +++ b/src/org/datafoodconsortium/connector/codegen/ruby/static/lib/datafoodconsortium/connector/skos_parser_element.rb @@ -22,7 +22,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. -class DataFoodConsortium::ConnectorV1::SKOSParserElement +class DataFoodConsortium::Connector::SKOSParserElement attr_reader :id attr_reader :type diff --git a/src/org/datafoodconsortium/connector/codegen/ruby/static/spec/address_spec.rb b/src/org/datafoodconsortium/connector/codegen/ruby/static/spec/address_spec.rb index 19c57141..3c368fa 100644 --- a/src/org/datafoodconsortium/connector/codegen/ruby/static/spec/address_spec.rb +++ b/src/org/datafoodconsortium/connector/codegen/ruby/static/spec/address_spec.rb @@ -1,6 +1,6 @@ -RSpec.describe DataFoodConsortium::ConnectorV1::Address do +RSpec.describe DataFoodConsortium::Connector::Address do it "can be empty when exported" do - subject = DataFoodConsortium::ConnectorV1::Address.new( + subject = DataFoodConsortium::Connector::Address.new( "https://myplatform.com/a" ) result = exported_json(subject) @@ -13,7 +13,7 @@ end it "contains all fields when exported" do - subject = DataFoodConsortium::ConnectorV1::Address.new( + subject = DataFoodConsortium::Connector::Address.new( "https://myplatform.com/a", street: "street", postalCode: "postalCode", diff --git a/src/org/datafoodconsortium/connector/codegen/ruby/static/spec/catalog_item_spec.rb b/src/org/datafoodconsortium/connector/codegen/ruby/static/spec/catalog_item_spec.rb index 0251b51..f1051eb 100644 --- a/src/org/datafoodconsortium/connector/codegen/ruby/static/spec/catalog_item_spec.rb +++ b/src/org/datafoodconsortium/connector/codegen/ruby/static/spec/catalog_item_spec.rb @@ -1,6 +1,6 @@ -RSpec.describe DataFoodConsortium::ConnectorV1::CatalogItem do +RSpec.describe DataFoodConsortium::Connector::CatalogItem do it "can be empty when exported" do - subject = DataFoodConsortium::ConnectorV1::CatalogItem.new( + subject = DataFoodConsortium::Connector::CatalogItem.new( "https://myplatform.com/ci" ) result = exported_json(subject) @@ -13,9 +13,9 @@ end it "contains all fields when exported" do - sp = DataFoodConsortium::ConnectorV1::CatalogItem.new("https://myplatform.com/sp") - offer = DataFoodConsortium::ConnectorV1::CatalogItem.new("https://myplatform.com/o") - subject = DataFoodConsortium::ConnectorV1::CatalogItem.new( + sp = DataFoodConsortium::Connector::CatalogItem.new("https://myplatform.com/sp") + offer = DataFoodConsortium::Connector::CatalogItem.new("https://myplatform.com/o") + subject = DataFoodConsortium::Connector::CatalogItem.new( "https://myplatform.com/ci", product: sp, sku: "sku", diff --git a/src/org/datafoodconsortium/connector/codegen/ruby/static/spec/catalog_spec.rb b/src/org/datafoodconsortium/connector/codegen/ruby/static/spec/catalog_spec.rb index 138a6fa..cda82cf 100644 --- a/src/org/datafoodconsortium/connector/codegen/ruby/static/spec/catalog_spec.rb +++ b/src/org/datafoodconsortium/connector/codegen/ruby/static/spec/catalog_spec.rb @@ -1,6 +1,6 @@ -RSpec.describe DataFoodConsortium::ConnectorV1::Catalog do +RSpec.describe DataFoodConsortium::Connector::Catalog do it "can be empty when exported" do - subject = DataFoodConsortium::ConnectorV1::Catalog.new( + subject = DataFoodConsortium::Connector::Catalog.new( "https://myplatform.com/c" ) result = exported_json(subject) @@ -13,12 +13,14 @@ end it "contains all fields when exported" do - catalogItem = DataFoodConsortium::ConnectorV1::CatalogItem.new("https://myplatform.com/catalogItem") - organization = DataFoodConsortium::ConnectorV1::Enterprise.new("https://myplatform.com/organization") - subject = DataFoodConsortium::ConnectorV1::Catalog.new( + catalogItem = DataFoodConsortium::Connector::CatalogItem.new("https://myplatform.com/catalogItem") + organization = DataFoodConsortium::Connector::Organization.new("https://myplatform.com/organization") + subject = DataFoodConsortium::Connector::Catalog.new( "https://myplatform.com/catalog", items: [catalogItem], maintainers: [organization], + beginDate: "beginDate", + endDate: "endDate", ) result = exported_json(subject) expect(result).to include( @@ -27,6 +29,8 @@ "@type" => "dfc-b:Catalog", "dfc-b:lists" => "https://myplatform.com/catalogItem", "dfc-b:maintainedBy" => "https://myplatform.com/organization", + "dfc-b:beginDate" => "beginDate", + "dfc-b:endDate" => "endDate", } ) end diff --git a/src/org/datafoodconsortium/connector/codegen/ruby/static/spec/certification_spec.rb b/src/org/datafoodconsortium/connector/codegen/ruby/static/spec/certification_spec.rb new file mode 100644 index 0000000..7c0455c --- /dev/null +++ b/src/org/datafoodconsortium/connector/codegen/ruby/static/spec/certification_spec.rb @@ -0,0 +1,40 @@ +RSpec.describe DataFoodConsortium::Connector::Certification do + it "can be empty when exported" do + subject = DataFoodConsortium::Connector::Certification.new( + "https://myplatform.com/subject" + ) + result = exported_json(subject) + expect(result).to include( + { + "@id" => "https://myplatform.com/subject", + "@type" => "dfc-b:Certfication", + } + ) + end + + it "contains all fields when exported" do + organization = DataFoodConsortium::Connector::Organization.new("https://myplatform.com/organization") + subject = DataFoodConsortium::Connector::Certification.new( + "https://myplatform.com/subject", + name: "name", + description: "description", + certificationReferences: ["certificationReference"], + certificationScores: ["certificationScore"], + operatorIds: ["operatorId"], + certifiedOrganizations: [organization], + ) + result = exported_json(subject) + expect(result).to include( + { + "@id" => "https://myplatform.com/subject", + "@type" => "dfc-b:Certfication", + "dfc-b:name" => "name", + "dfc-b:hasDescription" => "description", + "dfc-b:certiferReference" => "certificationReference", + "dfc-b:certificationScore" => "certificationScore", + "dfc-b:operatorId" => "operatorId", + "dfc-b:certifies" => "https://myplatform.com/organization", + } + ) + end +end diff --git a/src/org/datafoodconsortium/connector/codegen/ruby/static/spec/connector_spec.rb b/src/org/datafoodconsortium/connector/codegen/ruby/static/spec/connector_spec.rb index 454b76b..f943a80 100644 --- a/src/org/datafoodconsortium/connector/codegen/ruby/static/spec/connector_spec.rb +++ b/src/org/datafoodconsortium/connector/codegen/ruby/static/spec/connector_spec.rb @@ -1,6 +1,6 @@ -RSpec.describe DataFoodConsortium::ConnectorV1::Connector do +RSpec.describe DataFoodConsortium::Connector::Connector do let(:product) do - DataFoodConsortium::ConnectorV1::SuppliedProduct.new( + DataFoodConsortium::Connector::SuppliedProduct.new( "https://example.net/tomato", name: "Tomato", description: "Awesome tomato", diff --git a/src/org/datafoodconsortium/connector/codegen/ruby/static/spec/customer_category_spec.rb b/src/org/datafoodconsortium/connector/codegen/ruby/static/spec/customer_category_spec.rb index bda277b..3f084a1 100644 --- a/src/org/datafoodconsortium/connector/codegen/ruby/static/spec/customer_category_spec.rb +++ b/src/org/datafoodconsortium/connector/codegen/ruby/static/spec/customer_category_spec.rb @@ -1,6 +1,6 @@ -RSpec.describe DataFoodConsortium::ConnectorV1::CustomerCategory do +RSpec.describe DataFoodConsortium::Connector::CustomerCategory do it "can be empty when exported" do - subject = DataFoodConsortium::ConnectorV1::CustomerCategory.new( + subject = DataFoodConsortium::Connector::CustomerCategory.new( "https://myplatform.com/cc" ) result = exported_json(subject) @@ -11,7 +11,7 @@ end it "contains all fields when exported" do - subject = DataFoodConsortium::ConnectorV1::CustomerCategory.new( + subject = DataFoodConsortium::Connector::CustomerCategory.new( "https://myplatform.com/cc", name: "name", description: "description", diff --git a/src/org/datafoodconsortium/connector/codegen/ruby/static/spec/delivery_option_spec.rb b/src/org/datafoodconsortium/connector/codegen/ruby/static/spec/delivery_option_spec.rb index 8731879..af78e4f 100644 --- a/src/org/datafoodconsortium/connector/codegen/ruby/static/spec/delivery_option_spec.rb +++ b/src/org/datafoodconsortium/connector/codegen/ruby/static/spec/delivery_option_spec.rb @@ -1,27 +1,50 @@ -RSpec.describe DataFoodConsortium::ConnectorV1::DeliveryOption do +RSpec.describe DataFoodConsortium::Connector::DeliveryOption do it "can be empty when exported" do - subject = DataFoodConsortium::ConnectorV1::DeliveryOption.new( - "https://myplatform.com/cc" + subject = DataFoodConsortium::Connector::DeliveryOption.new( + "https://myplatform.com/subject" ) result = exported_json(subject) expect(result).to include( - "@id" => "https://myplatform.com/cc", - "@type" => "dfc-b:DeliveryOption", + { + "@id" => "https://myplatform.com/subject", + "@type" => "dfc-b:DeliveryOption", + } ) end it "contains all fields when exported" do - subject = DataFoodConsortium::ConnectorV1::DeliveryOption.new( - "https://myplatform.com/cc", - name: "name", - description: "description", + quantity = DataFoodConsortium::Connector::QuantitativeValue.new() + order = DataFoodConsortium::Connector::Order.new("https://myplatform.com/order") + saleSession = DataFoodConsortium::Connector::SaleSession.new("https://myplatform.com/saleSession") + deliveredPlace = DataFoodConsortium::Connector::PhysicalPlace.new("https://myplatform.com/deliveredPlace") + subject = DataFoodConsortium::Connector::DeliveryOption.new( + "https://myplatform.com/subject", + name: "name", + description: "description", + fee: 1.0, + quantity: quantity, + order: order, + saleSession: saleSession, + beginDate: "beginDate", + endDate: "endDate", + deliveredPlace: deliveredPlace, + deliveryConstraint: "deliveryConstraint", + accessibilityInformation: "accessibilityInformation", ) result = exported_json(subject) expect(result).to include( - "@id" => "https://myplatform.com/cc", - "@type" => "dfc-b:DeliveryOption", - "dfc-b:name" => "name", - "dfc-b:description" => "description", + { + "@id" => "https://myplatform.com/subject", + "@type" => "dfc-b:DeliveryOption", + "dfc-b:name" => "name", + "dfc-b:description" => "description", + "dfc-b:fee" => 1.0, + "dfc-b:hasQuantity" => {"@type" => "dfc-b:QuantitativeValue"}, + "dfc-b:selectedBy" => "https://myplatform.com/order", + "dfc-b:optionOf" => "https://myplatform.com/saleSession", + "dfc-b:startDate" => "beginDate", + "dfc-b:endDate" => "endDate", + } ) end end diff --git a/src/org/datafoodconsortium/connector/codegen/ruby/static/spec/delivery_step_spec.rb b/src/org/datafoodconsortium/connector/codegen/ruby/static/spec/delivery_step_spec.rb new file mode 100644 index 0000000..30874e7 --- /dev/null +++ b/src/org/datafoodconsortium/connector/codegen/ruby/static/spec/delivery_step_spec.rb @@ -0,0 +1,38 @@ +RSpec.describe DataFoodConsortium::Connector::DeliveryStep do + it "can be empty when exported" do + subject = DataFoodConsortium::Connector::DeliveryStep.new( + "https://myplatform.com/subject" + ) + result = exported_json(subject) + expect(result).to include( + { + "@id" => "https://myplatform.com/subject", + "@type" => "dfc-b:DeliveryStep", + } + ) + end + + it "contains all fields when exported" do + route = DataFoodConsortium::Connector::Route.new("https://myplatform.com/route") + subject = DataFoodConsortium::Connector::DeliveryStep.new( + "https://myplatform.com/subject", + name: "name", + description: "description", + routes: [route], + duration: "duration", + arrivalDate: "arrivalDate", + ) + result = exported_json(subject) + expect(result).to include( + { + "@id" => "https://myplatform.com/subject", + "@type" => "dfc-b:DeliveryStep", + "dfc-b:name" => "name", + "dfc-b:description" => "description", + "dfc-b:isStepOf" => "https://myplatform.com/route", + "dfc-b:duration" => "duration", + "dfc-b:arrivalDate" => "arrivalDate", + } + ) + end +end diff --git a/src/org/datafoodconsortium/connector/codegen/ruby/static/spec/export_spec.rb b/src/org/datafoodconsortium/connector/codegen/ruby/static/spec/export_spec.rb index 21d7bbd..c0a6998 100644 --- a/src/org/datafoodconsortium/connector/codegen/ruby/static/spec/export_spec.rb +++ b/src/org/datafoodconsortium/connector/codegen/ruby/static/spec/export_spec.rb @@ -1,31 +1,32 @@ -RSpec.describe DataFoodConsortium::ConnectorV1::Connector do +RSpec.describe DataFoodConsortium::Connector::Connector do it "exports an empty list" do subjects = [] actual = exported_json(*subjects) + expected = { - "@context" => "https://w3id.org/dfc/ontology/context/context_1.16.0.json" + "@context" => "https://w3id.org/dfc/ontology/context/context_2.0.0.json" } expect(actual).to eq expected end it "exports multiple subjects in a graph" do - a = DataFoodConsortium::ConnectorV1::Address.new( + a = DataFoodConsortium::Connector::Address.new( "https://myplatform.com/a", street: "street", postalCode: "postalCode", city: "city", country: "country" ) - cc = DataFoodConsortium::ConnectorV1::CustomerCategory.new( + cc = DataFoodConsortium::Connector::CustomerCategory.new( "https://myplatform.com/cc", description: "description" ) - sp = DataFoodConsortium::ConnectorV1::SuppliedProduct.new( + sp = DataFoodConsortium::Connector::SuppliedProduct.new( "https://myplatform.com/sp", name: "name", description: "description", productType: connector.PRODUCT_TYPES.VEGETABLE.ARTICHOKE, - quantity: DataFoodConsortium::ConnectorV1::QuantitativeValue.new( + quantity: DataFoodConsortium::Connector::QuantitativeValue.new( unit: connector.MEASURES.KILOGRAM, value: 1.2 ), @@ -41,14 +42,14 @@ ], allergenCharacteristics: [], nutrientCharacteristics: [ - DataFoodConsortium::ConnectorV1::NutrientCharacteristic.new( + DataFoodConsortium::Connector::NutrientCharacteristic.new( nutrientDimension: connector.MEASURES.CALCIUM, unit: connector.MEASURES.GRAM, value: 8.47 ) ], physicalCharacteristics: [ - DataFoodConsortium::ConnectorV1::PhysicalCharacteristic.new( + DataFoodConsortium::Connector::PhysicalCharacteristic.new( physicalDimension: connector.MEASURES.WEIGHT, unit: connector.MEASURES.KILOGRAM, value: 3.25 @@ -58,9 +59,9 @@ natureOrigin: connector.FACETS.NATUREORIGIN.PLANTORIGIN, partOrigin: connector.FACETS.NATUREORIGIN.PLANTORIGIN ) - o = DataFoodConsortium::ConnectorV1::Offer.new( + o = DataFoodConsortium::Connector::Offer.new( "https://myplatform.com/o", - price: DataFoodConsortium::ConnectorV1::Price.new( + price: DataFoodConsortium::Connector::Price.new( value: 12.78, vatRate: 5.22, unit: connector.MEASURES.EURO @@ -68,14 +69,14 @@ stockLimitation: 52, offeredTo: cc ) - ci = DataFoodConsortium::ConnectorV1::CatalogItem.new( + ci = DataFoodConsortium::Connector::CatalogItem.new( "https://myplatform.com/ci", product: sp, sku: "sku", stockLimitation: 10, offers: [o] ) - e = DataFoodConsortium::ConnectorV1::Enterprise.new( + e = DataFoodConsortium::Connector::Organization.new( "https://myplatform.com/e", name: "name", description: "description", @@ -85,7 +86,7 @@ catalogItems: [ci], localizations: [] ) - p = DataFoodConsortium::ConnectorV1::Person.new( + p = DataFoodConsortium::Connector::Person.new( "https://myplatform.com/p", firstName: "firstName", lastName: "lastName", @@ -94,10 +95,10 @@ ) actual = exported_json(p, a, e, cc, sp, ci, o) expected = { - '@context' => 'https://w3id.org/dfc/ontology/context/context_1.16.0.json', + '@context' => 'https://w3id.org/dfc/ontology/context/context_2.0.0.json', '@graph' => [ { '@id' => 'https://myplatform.com/p', '@type' => 'dfc-b:Person', 'dfc-b:affiliates' => 'https://myplatform.com/e', - 'dfc-b:familyName' => 'lastName', 'dfc-b:firstName' => 'firstName', 'dfc-b:hasAddress' => 'https://myplatform.com/a' }, { '@id' => 'https://myplatform.com/a', '@type' => 'dfc-b:Address', 'dfc-b:hasCity' => 'city', 'dfc-b:hasCountry' => 'country', 'dfc-b:hasPostalCode' => 'postalCode', 'dfc-b:hasStreet' => 'street' }, { '@id' => 'https://myplatform.com/e', '@type' => 'dfc-b:Enterprise', 'dfc-b:VATnumber' => 'vatNumber', 'dfc-b:defines' => 'https://myplatform.com/cc', 'dfc-b:hasDescription' => 'description', 'dfc-b:manages' => 'https://myplatform.com/ci', 'dfc-b:name' => 'name', 'dfc-b:supplies' => 'https://myplatform.com/sp' }, { '@id' => 'https://myplatform.com/cc', '@type' => 'dfc-b:CustomerCategory', 'dfc-b:description' => 'description' }, { '@id' => 'https://myplatform.com/sp', '@type' => 'dfc-b:SuppliedProduct', 'dfc-b:alcoholPercentage' => 2.6, 'dfc-b:description' => 'description', 'dfc-b:hasCertification' => 'dfc-f:Demeter', 'dfc-b:hasClaim' => ['dfc-f:EnergyFree', 'dfc-f:FatFree', 'dfc-f:HighFibre'], 'dfc-b:hasGeographicalOrigin' => 'dfc-f:Normandy', 'dfc-b:hasNatureOrigin' => 'dfc-f:PlantOrigin', 'dfc-b:hasNutrientCharacteristic' => { '@type' => 'dfc-b:NutrientCharacteristic', 'dfc-b:hasNutrientDimension' => 'dfc-m:Calcium', 'dfc-b:hasUnit' => 'dfc-m:Gram', 'dfc-b:value' => 8.47 }, 'dfc-b:hasPartOrigin' => 'dfc-f:PlantOrigin', 'dfc-b:hasPhysicalCharacteristic' => { '@type' => 'dfc-b:PhysicalCharacteristic', 'dfc-b:hasPhysicalDimension' => 'dfc-m:Weight', 'dfc-b:hasUnit' => 'dfc-m:Kilogram', 'dfc-b:value' => 3.25 }, 'dfc-b:hasQuantity' => { '@type' => 'dfc-b:QuantitativeValue', 'dfc-b:hasUnit' => 'dfc-m:Kilogram', 'dfc-b:value' => 1.2 }, 'dfc-b:hasType' => 'dfc-pt:artichoke', 'dfc-b:lifetime' => 'lifetime', 'dfc-b:name' => 'name', 'dfc-b:totalTheoreticalStock' => 123, 'dfc-b:usageOrStorageCondition' => 'usageOrStorageConditions' }, { '@id' => 'https://myplatform.com/ci', '@type' => 'dfc-b:CatalogItem', 'dfc-b:offeredThrough' => 'https://myplatform.com/o', 'dfc-b:references' => 'https://myplatform.com/sp', 'dfc-b:sku' => 'sku', 'dfc-b:stockLimitation' => 10 }, { '@id' => 'https://myplatform.com/o', '@type' => 'dfc-b:Offer', 'dfc-b:hasPrice' => { '@type' => 'dfc-b:Price', 'dfc-b:VATrate' => 5.22, 'dfc-b:hasUnit' => 'dfc-m:Euro', 'dfc-b:value' => 12.78 }, 'dfc-b:offeredTo' => 'https://myplatform.com/cc', 'dfc-b:stockLimitation' => 52 } + 'dfc-b:familyName' => 'lastName', 'dfc-b:firstName' => 'firstName', 'dfc-b:hasAddress' => 'https://myplatform.com/a' }, { '@id' => 'https://myplatform.com/a', '@type' => 'dfc-b:Address', 'dfc-b:hasCity' => 'city', 'dfc-b:hasCountry' => 'country', 'dfc-b:hasPostalCode' => 'postalCode', 'dfc-b:hasStreet' => 'street' }, { '@id' => 'https://myplatform.com/e', '@type' => 'dfc-b:Organization', 'dfc-b:VATnumber' => 'vatNumber', 'dfc-b:defines' => 'https://myplatform.com/cc', 'dfc-b:hasDescription' => 'description', 'dfc-b:manages' => 'https://myplatform.com/ci', 'dfc-b:name' => 'name', 'dfc-b:supplies' => 'https://myplatform.com/sp' }, { '@id' => 'https://myplatform.com/cc', '@type' => 'dfc-b:CustomerCategory', 'dfc-b:description' => 'description' }, { '@id' => 'https://myplatform.com/sp', '@type' => 'dfc-b:SuppliedProduct', 'dfc-b:alcoholPercentage' => 2.6, 'dfc-b:description' => 'description', 'dfc-b:hasCertification' => 'dfc-f:Demeter', 'dfc-b:hasClaim' => ['dfc-f:EnergyFree', 'dfc-f:FatFree', 'dfc-f:HighFibre'], 'dfc-b:hasGeographicalOrigin' => 'dfc-f:Normandy', 'dfc-b:hasNatureOrigin' => 'dfc-f:PlantOrigin', 'dfc-b:hasNutrientCharacteristic' => { '@type' => 'dfc-b:NutrientCharacteristic', 'dfc-b:hasNutrientDimension' => 'dfc-m:Calcium', 'dfc-b:hasUnit' => 'dfc-m:Gram', 'dfc-b:value' => 8.47 }, 'dfc-b:hasPartOrigin' => 'dfc-f:PlantOrigin', 'dfc-b:hasPhysicalCharacteristic' => { '@type' => 'dfc-b:PhysicalCharacteristic', 'dfc-b:hasPhysicalDimension' => 'dfc-m:Weight', 'dfc-b:hasUnit' => 'dfc-m:Kilogram', 'dfc-b:value' => 3.25 }, 'dfc-b:hasQuantity' => { '@type' => 'dfc-b:QuantitativeValue', 'dfc-b:hasUnit' => 'dfc-m:Kilogram', 'dfc-b:value' => 1.2 }, 'dfc-b:hasType' => 'dfc-pt:artichoke', 'dfc-b:lifetime' => 'lifetime', 'dfc-b:name' => 'name', 'dfc-b:totalTheoreticalStock' => 123, 'dfc-b:usageOrStorageCondition' => 'usageOrStorageConditions' }, { '@id' => 'https://myplatform.com/ci', '@type' => 'dfc-b:CatalogItem', 'dfc-b:offeredThrough' => 'https://myplatform.com/o', 'dfc-b:references' => 'https://myplatform.com/sp', 'dfc-b:sku' => 'sku', 'dfc-b:stockLimitation' => 10 }, { '@id' => 'https://myplatform.com/o', '@type' => 'dfc-b:Offer', 'dfc-b:hasPrice' => { '@type' => 'dfc-b:Price', 'dfc-b:VATrate' => 5.22, 'dfc-b:hasUnit' => 'dfc-m:Euro', 'dfc-b:value' => 12.78 }, 'dfc-b:offeredTo' => 'https://myplatform.com/cc', 'dfc-b:stockLimitation' => 52 } ], } expect(actual).to eq(expected) diff --git a/src/org/datafoodconsortium/connector/codegen/ruby/static/spec/importer_spec.rb b/src/org/datafoodconsortium/connector/codegen/ruby/static/spec/importer_spec.rb index e0e4a82..dcc52ff 100644 --- a/src/org/datafoodconsortium/connector/codegen/ruby/static/spec/importer_spec.rb +++ b/src/org/datafoodconsortium/connector/codegen/ruby/static/spec/importer_spec.rb @@ -1,18 +1,18 @@ -RSpec.describe DataFoodConsortium::ConnectorV1::Importer do - let(:enterprise) do - DataFoodConsortium::ConnectorV1::Enterprise.new( +RSpec.describe DataFoodConsortium::Connector::Importer do + let(:organization) do + DataFoodConsortium::Connector::Organization.new( "https://example.net/foo-food-inc", suppliedProducts: [product, second_product], ) end let(:catalog_item) do - DataFoodConsortium::ConnectorV1::CatalogItem.new( + DataFoodConsortium::Connector::CatalogItem.new( "https://example.net/tomatoItem", product: product, ) end let(:product) do - DataFoodConsortium::ConnectorV1::SuppliedProduct.new( + DataFoodConsortium::Connector::SuppliedProduct.new( "https://example.net/tomato", name: "Tomato", description: "Awesome tomato", @@ -22,7 +22,7 @@ let(:product_data) do <<~JSON { - "@context":"http://static.datafoodconsortium.org/ontologies/context.json", + "@context":"https://www.datafoodconsortium.org/wp-content/plugins/wordpress-context-jsonld/context_2.0.0.jsonld", "@id":"https://example.net/tomato", "@type":"dfc-b:SuppliedProduct", "dfc-b:name":"Tomato", @@ -34,13 +34,13 @@ } JSON end - let(:product_data_with_context_v1_8) do + let(:product_data_with_context_v2) do <<~JSON { "@context": { - "dfc-b": "https://github.com/datafoodconsortium/ontology/releases/latest/download/DFC_BusinessOntology.owl#", - "dfc-m": "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/measures.rdf#", - "dfc-pt": "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#", + "dfc-b": "http://w3id.org/dfc/ontology/v2.0.0/src/DFC_BusinessOntology.owl#", + "dfc-m": "http://w3id.org/dfc/taxonomies/v2.0.0/measures.rdf#", + "dfc-pt": "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#", "dfc-b:hasType":{"@type":"@id"} }, "@id":"https://example.net/tomato", @@ -55,13 +55,13 @@ JSON end let(:second_product) do - DataFoodConsortium::ConnectorV1::SuppliedProduct.new( + DataFoodConsortium::Connector::SuppliedProduct.new( "https://example.net/ocra", name: "Ocra", ) end let(:quantity) do - DataFoodConsortium::ConnectorV1::QuantitativeValue.new( + DataFoodConsortium::Connector::QuantitativeValue.new( unit: connector.MEASURES.PIECE, value: 5, ) @@ -86,7 +86,7 @@ it "imports with another context URL" do result = connector.import <<~JSON { - "@context":"https://www.datafoodconsortium.org/wp-content/plugins/wordpress-context-jsonld/context.jsonld", + "@context":"https://www.datafoodconsortium.org/wp-content/plugins/wordpress-context-jsonld/context_2.0.0.jsonld", "@id":"https://example.net/tomato", "@type":"dfc-b:SuppliedProduct" } @@ -108,7 +108,7 @@ it "imports an object with referenced context" do result = connector.import(product_data) - expect(result).to be_a DataFoodConsortium::ConnectorV1::SuppliedProduct + expect(result).to be_a DataFoodConsortium::Connector::SuppliedProduct expect(result.semanticType).to eq "dfc-b:SuppliedProduct" expect(result.semanticId).to eq "https://example.net/tomato" expect(result.name).to eq "Tomato" @@ -116,10 +116,10 @@ expect(result.totalTheoreticalStock).to eq 3 end - it "imports an object with included DFC v1.8 context" do - result = connector.import(product_data_with_context_v1_8) + it "imports an object with included DFC v2 context" do + result = connector.import(product_data_with_context_v2) - expect(result).to be_a DataFoodConsortium::ConnectorV1::SuppliedProduct + expect(result).to be_a DataFoodConsortium::Connector::SuppliedProduct expect(result.semanticType).to eq "dfc-b:SuppliedProduct" expect(result.semanticId).to eq "https://example.net/tomato" expect(result.name).to eq "Tomato" @@ -155,13 +155,13 @@ end it "imports properties with lists" do - result = import(enterprise, product, second_product) + result = import(organization, product, second_product) expect(result.size).to eq 3 - enterprise, tomato, ocra = result + organization, tomato, ocra = result - expect(enterprise.suppliedProducts).to eq [tomato, ocra] + expect(organization.suppliedProducts).to eq [tomato, ocra] end def import(*args) diff --git a/src/org/datafoodconsortium/connector/codegen/ruby/static/spec/localized_product_spec.rb b/src/org/datafoodconsortium/connector/codegen/ruby/static/spec/localized_product_spec.rb index 9be851d..e2e1056 100644 --- a/src/org/datafoodconsortium/connector/codegen/ruby/static/spec/localized_product_spec.rb +++ b/src/org/datafoodconsortium/connector/codegen/ruby/static/spec/localized_product_spec.rb @@ -1,6 +1,6 @@ -RSpec.describe DataFoodConsortium::ConnectorV1::LocalizedProduct do +RSpec.describe DataFoodConsortium::Connector::LocalizedProduct do it "can be empty when exported" do - subject = DataFoodConsortium::ConnectorV1::LocalizedProduct.new( + subject = DataFoodConsortium::Connector::LocalizedProduct.new( "https://myplatform.com/subject" ) result = exported_json(subject) @@ -13,13 +13,13 @@ end it "contains all fields when exported" do - quantity = DataFoodConsortium::ConnectorV1::QuantitativeValue.new() - theoreticalStock = DataFoodConsortium::ConnectorV1::TheoreticalStock.new("https://myplatform.com/theoreticalStock") - suppliedProduct = DataFoodConsortium::ConnectorV1::SuppliedProduct.new("https://myplatform.com/suppliedProduct") - physicalProduct = DataFoodConsortium::ConnectorV1::PhysicalProduct.new("https://myplatform.com/physicalProduct") - plannedLocalProductionFlow = DataFoodConsortium::ConnectorV1::PlannedLocalProductionFlow.new("https://myplatform.com/plannedLocalProductionFlow") - plannedLocalConsumptionFlow = DataFoodConsortium::ConnectorV1::PlannedLocalConsumptionFlow.new("https://myplatform.com/plannedLocalConsumptionFlow") - subject = DataFoodConsortium::ConnectorV1::LocalizedProduct.new( + quantity = DataFoodConsortium::Connector::QuantitativeValue.new() + theoreticalStock = DataFoodConsortium::Connector::TheoreticalStock.new("https://myplatform.com/theoreticalStock") + suppliedProduct = DataFoodConsortium::Connector::SuppliedProduct.new("https://myplatform.com/suppliedProduct") + physicalProduct = DataFoodConsortium::Connector::PhysicalProduct.new("https://myplatform.com/physicalProduct") + plannedLocalProductionFlow = DataFoodConsortium::Connector::PlannedLocalProductionFlow.new("https://myplatform.com/plannedLocalProductionFlow") + plannedLocalConsumptionFlow = DataFoodConsortium::Connector::PlannedLocalConsumptionFlow.new("https://myplatform.com/plannedLocalConsumptionFlow") + subject = DataFoodConsortium::Connector::LocalizedProduct.new( "https://myplatform.com/subject", name: "name", description: "description", diff --git a/src/org/datafoodconsortium/connector/codegen/ruby/static/spec/offer_spec.rb b/src/org/datafoodconsortium/connector/codegen/ruby/static/spec/offer_spec.rb index 239b8af..56f3f16 100644 --- a/src/org/datafoodconsortium/connector/codegen/ruby/static/spec/offer_spec.rb +++ b/src/org/datafoodconsortium/connector/codegen/ruby/static/spec/offer_spec.rb @@ -1,10 +1,10 @@ -RSpec.describe DataFoodConsortium::ConnectorV1::Offer do +RSpec.describe DataFoodConsortium::Connector::Offer do it "has a type" do expect(described_class::SEMANTIC_TYPE).to eq "dfc-b:Offer" end it "can be empty when exported" do - subject = DataFoodConsortium::ConnectorV1::Offer.new( + subject = DataFoodConsortium::Connector::Offer.new( "https://myplatform.com/o" ) result = exported_json(subject) @@ -15,11 +15,11 @@ end it "contains all fields when exported" do - ci = DataFoodConsortium::ConnectorV1::CatalogItem.new("https://myplatform.com/ci") - cc = DataFoodConsortium::ConnectorV1::CustomerCategory.new("https://myplatform.com/cc") - subject = DataFoodConsortium::ConnectorV1::Offer.new( + ci = DataFoodConsortium::Connector::CatalogItem.new("https://myplatform.com/ci") + cc = DataFoodConsortium::Connector::CustomerCategory.new("https://myplatform.com/cc") + subject = DataFoodConsortium::Connector::Offer.new( "https://myplatform.com/o", - price: DataFoodConsortium::ConnectorV1::Price.new( + price: DataFoodConsortium::Connector::Price.new( value: 12.78, vatRate: 5.22, unit: connector.MEASURES.EURO diff --git a/src/org/datafoodconsortium/connector/codegen/ruby/static/spec/enterprise_spec.rb b/src/org/datafoodconsortium/connector/codegen/ruby/static/spec/organization_spec.rb similarity index 62% rename from src/org/datafoodconsortium/connector/codegen/ruby/static/spec/enterprise_spec.rb rename to src/org/datafoodconsortium/connector/codegen/ruby/static/spec/organization_spec.rb index 97a61b0..f91a51c 100644 --- a/src/org/datafoodconsortium/connector/codegen/ruby/static/spec/enterprise_spec.rb +++ b/src/org/datafoodconsortium/connector/codegen/ruby/static/spec/organization_spec.rb @@ -1,31 +1,31 @@ -RSpec.describe DataFoodConsortium::ConnectorV1::Enterprise do +RSpec.describe DataFoodConsortium::Connector::Organization do it "can be empty when exported" do - subject = DataFoodConsortium::ConnectorV1::Enterprise.new( + subject = DataFoodConsortium::Connector::Organization.new( "https://myplatform.com/e" ) result = exported_json(subject) expect(result).to include( { "@id" => "https://myplatform.com/e", - "@type" => "dfc-b:Enterprise", + "@type" => "dfc-b:Organization", } ) end it "contains all fields when exported" do - subject = DataFoodConsortium::ConnectorV1::Enterprise.new( + subject = DataFoodConsortium::Connector::Organization.new( "https://myplatform.com/e", name: "name", description: "description", vatNumber: "vatNumber", customerCategories: [ - DataFoodConsortium::ConnectorV1::CustomerCategory.new("https://myplatform.com/cc") + DataFoodConsortium::Connector::CustomerCategory.new("https://myplatform.com/cc") ], suppliedProducts: [ - DataFoodConsortium::ConnectorV1::SuppliedProduct.new("https://myplatform.com/sp") + DataFoodConsortium::Connector::SuppliedProduct.new("https://myplatform.com/sp") ], catalogItems: [ - DataFoodConsortium::ConnectorV1::CatalogItem.new("https://myplatform.com/ci") + DataFoodConsortium::Connector::CatalogItem.new("https://myplatform.com/ci") ], localizations: [], affiliates: [ @@ -36,7 +36,7 @@ expect(result).to include( { "@id" => "https://myplatform.com/e", - "@type" => "dfc-b:Enterprise", + "@type" => "dfc-b:Organization", "dfc-b:VATnumber" => "vatNumber", "dfc-b:defines" => "https://myplatform.com/cc", "dfc-b:hasDescription" => "description", @@ -49,22 +49,22 @@ end it "contains collections as arrays when exported" do - subject = DataFoodConsortium::ConnectorV1::Enterprise.new( + subject = DataFoodConsortium::Connector::Organization.new( "https://myplatform.com/e", name: "name", description: "description", vatNumber: "vatNumber", customerCategories: [ - DataFoodConsortium::ConnectorV1::CustomerCategory.new("https://myplatform.com/cc"), - DataFoodConsortium::ConnectorV1::CustomerCategory.new("https://myplatform.com/cc2") + DataFoodConsortium::Connector::CustomerCategory.new("https://myplatform.com/cc"), + DataFoodConsortium::Connector::CustomerCategory.new("https://myplatform.com/cc2") ], suppliedProducts: [ - DataFoodConsortium::ConnectorV1::SuppliedProduct.new("https://myplatform.com/sp"), - DataFoodConsortium::ConnectorV1::SuppliedProduct.new("https://myplatform.com/sp2") + DataFoodConsortium::Connector::SuppliedProduct.new("https://myplatform.com/sp"), + DataFoodConsortium::Connector::SuppliedProduct.new("https://myplatform.com/sp2") ], catalogItems: [ - DataFoodConsortium::ConnectorV1::CatalogItem.new("https://myplatform.com/ci"), - DataFoodConsortium::ConnectorV1::CatalogItem.new("https://myplatform.com/ci2") + DataFoodConsortium::Connector::CatalogItem.new("https://myplatform.com/ci"), + DataFoodConsortium::Connector::CatalogItem.new("https://myplatform.com/ci2") ], localizations: [] ) @@ -72,7 +72,7 @@ expect(result).to include( { "@id" => "https://myplatform.com/e", - "@type" => "dfc-b:Enterprise", + "@type" => "dfc-b:Organization", "dfc-b:VATnumber" => "vatNumber", "dfc-b:defines" => ["https://myplatform.com/cc", "https://myplatform.com/cc2"], "dfc-b:hasDescription" => "description", diff --git a/src/org/datafoodconsortium/connector/codegen/ruby/static/spec/parse_with_skos_concept_spec.rb b/src/org/datafoodconsortium/connector/codegen/ruby/static/spec/parse_with_skos_concept_spec.rb index 0ac263c..93573a1 100644 --- a/src/org/datafoodconsortium/connector/codegen/ruby/static/spec/parse_with_skos_concept_spec.rb +++ b/src/org/datafoodconsortium/connector/codegen/ruby/static/spec/parse_with_skos_concept_spec.rb @@ -24,7 +24,7 @@ it "parses the first level" do drink_type = connector.PRODUCT_TYPES.DRINK - expect(drink_type).to be_a DataFoodConsortium::ConnectorV1::SKOSConcept + expect(drink_type).to be_a DataFoodConsortium::Connector::SKOSConcept expect(drink_type.broaders).to eq([]) expect(drink_type.narrowers).to include(/alcoholic-beverage/, /soft-drink/) end @@ -32,7 +32,7 @@ it "parses the second level" do drink_type = connector.PRODUCT_TYPES.DRINK.SOFT_DRINK - expect(drink_type).to be_a DataFoodConsortium::ConnectorV1::SKOSConcept + expect(drink_type).to be_a DataFoodConsortium::Connector::SKOSConcept expect(drink_type.broaders).to include(/drink/) expect(drink_type.narrowers).to include(/fruit-juice/, /lemonade/, /smoothie/) end @@ -40,7 +40,7 @@ it "parses leaf level" do drink_type = connector.PRODUCT_TYPES.DRINK.SOFT_DRINK.LEMONADE - expect(drink_type).to be_a DataFoodConsortium::ConnectorV1::SKOSConcept + expect(drink_type).to be_a DataFoodConsortium::Connector::SKOSConcept expect(drink_type.broaders).to include(/soft-drink/) expect(drink_type.narrowers).to eq([]) end @@ -61,7 +61,7 @@ it "parses the first level" do facet = connector.FACETS.CERTIFICATION - expect(facet).to be_a DataFoodConsortium::ConnectorV1::SKOSConcept + expect(facet).to be_a DataFoodConsortium::Connector::SKOSConcept expect(facet.broaders).to eq([]) expect(facet.narrowers).to include( /OrganicLabel/, /LocalLabel/, /BiodynamicLabel/, /EthicalLabel/, /MarketingLabel/ diff --git a/src/org/datafoodconsortium/connector/codegen/ruby/static/spec/person_spec.rb b/src/org/datafoodconsortium/connector/codegen/ruby/static/spec/person_spec.rb index 9910310..ed8abbc 100644 --- a/src/org/datafoodconsortium/connector/codegen/ruby/static/spec/person_spec.rb +++ b/src/org/datafoodconsortium/connector/codegen/ruby/static/spec/person_spec.rb @@ -1,6 +1,6 @@ -RSpec.describe DataFoodConsortium::ConnectorV1::Person do +RSpec.describe DataFoodConsortium::Connector::Person do it "can be empty when exported" do - p = DataFoodConsortium::ConnectorV1::Person.new("https://myplatform.com/p") + p = DataFoodConsortium::Connector::Person.new("https://myplatform.com/p") actual = exported_json(p) expected = { "@id" => "https://myplatform.com/p", @@ -10,15 +10,15 @@ end it "contains all fields when exported" do - p = DataFoodConsortium::ConnectorV1::Person.new( + p = DataFoodConsortium::Connector::Person.new( "https://myplatform.com/p", firstName: "firstName", lastName: "lastName", affiliatedOrganizations: [ - DataFoodConsortium::ConnectorV1::Enterprise.new("https://myplatform.com/e") + DataFoodConsortium::Connector::Organization.new("https://myplatform.com/e") ], localizations: [ - DataFoodConsortium::ConnectorV1::Address.new("https://myplatform.com/a") + DataFoodConsortium::Connector::Address.new("https://myplatform.com/a") ] ) actual = exported_json(p) diff --git a/src/org/datafoodconsortium/connector/codegen/ruby/static/spec/supplied_product_spec.rb b/src/org/datafoodconsortium/connector/codegen/ruby/static/spec/supplied_product_spec.rb index 6fc3aa2..4a37d2f 100644 --- a/src/org/datafoodconsortium/connector/codegen/ruby/static/spec/supplied_product_spec.rb +++ b/src/org/datafoodconsortium/connector/codegen/ruby/static/spec/supplied_product_spec.rb @@ -1,6 +1,6 @@ -RSpec.describe DataFoodConsortium::ConnectorV1::SuppliedProduct do +RSpec.describe DataFoodConsortium::Connector::SuppliedProduct do it "can be empty when exported" do - sp = DataFoodConsortium::ConnectorV1::SuppliedProduct.new("https://myplatform.com/sp") + sp = DataFoodConsortium::Connector::SuppliedProduct.new("https://myplatform.com/sp") actual = exported_json(sp) expect(actual).to include( "@id" => "https://myplatform.com/sp", @@ -9,12 +9,12 @@ end it "contains all fields when exported" do - quantity = DataFoodConsortium::ConnectorV1::QuantitativeValue.new( + quantity = DataFoodConsortium::Connector::QuantitativeValue.new( unit: connector.MEASURES.KILOGRAM, value: 1.2 ) - sp = DataFoodConsortium::ConnectorV1::SuppliedProduct.new( + sp = DataFoodConsortium::Connector::SuppliedProduct.new( "https://myplatform.com/sp", name: "name", description: "description", @@ -32,14 +32,14 @@ ], allergenCharacteristics: [], nutrientCharacteristics: [ - DataFoodConsortium::ConnectorV1::NutrientCharacteristic.new( + DataFoodConsortium::Connector::NutrientCharacteristic.new( nutrientDimension: connector.MEASURES.CALCIUM, unit: connector.MEASURES.GRAM, value: 8.47 ) ], physicalCharacteristics: [ - DataFoodConsortium::ConnectorV1::PhysicalCharacteristic.new( + DataFoodConsortium::Connector::PhysicalCharacteristic.new( physicalDimension: connector.MEASURES.WEIGHT, unit: connector.MEASURES.KILOGRAM, value: 3.25 diff --git a/src/org/datafoodconsortium/connector/codegen/ruby/static/spec/support/connector_helper.rb b/src/org/datafoodconsortium/connector/codegen/ruby/static/spec/support/connector_helper.rb index 318a874..49bb0b5 100644 --- a/src/org/datafoodconsortium/connector/codegen/ruby/static/spec/support/connector_helper.rb +++ b/src/org/datafoodconsortium/connector/codegen/ruby/static/spec/support/connector_helper.rb @@ -1,8 +1,8 @@ -require 'datafoodconsortium/connector_v1' +require 'datafoodconsortium/connector' module ConnectorHelper def connector - @connector ||= DataFoodConsortium::ConnectorV1::Connector.instance.tap do |c| + @connector ||= DataFoodConsortium::Connector::Connector.instance.tap do |c| c.loadMeasures(parse_json_file("measures.json")) c.loadFacets(parse_json_file("facets.json")) c.loadProductTypes(parse_json_file("productTypes.json")) diff --git a/src/org/datafoodconsortium/connector/codegen/ruby/static/spec/support/facets.json b/src/org/datafoodconsortium/connector/codegen/ruby/static/spec/support/facets.json index ca3dd5c..64d0fb5 100644 --- a/src/org/datafoodconsortium/connector/codegen/ruby/static/spec/support/facets.json +++ b/src/org/datafoodconsortium/connector/codegen/ruby/static/spec/support/facets.json @@ -1,9 +1,9 @@ [ { "@graph" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf", "@type" : [ "http://www.w3.org/2002/07/owl#Ontology" ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#AOC_FR", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#AOC_FR", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ { "@id" : "gs1:PackagingMarkedLabelAccreditationCode-APPELLATION_ORIGINE_CONTROLEE" @@ -13,10 +13,10 @@ "@value" : "AOC" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#LocalLabel" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#LocalLabel" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -26,7 +26,7 @@ "@value" : "Appellation d’origine contrôlée" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#AOP_EU", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#AOP_EU", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ { "@id" : "gs1:PackagingMarkedLabelAccreditationCode-PROTECTED_DESIGNATION_OF_ORIGIN" @@ -39,10 +39,10 @@ "@value" : "AOP" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#LocalLabel" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#LocalLabel" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -52,16 +52,16 @@ "@value" : "Appellation d’origine protégée" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Africa", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Africa", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ { "@id" : "https://www.wikidata.org/wiki/Q15" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#TerritorialOrigin" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#TerritorialOrigin" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -71,13 +71,13 @@ "@value" : "Afrique" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Algae", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Algae", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NatureOrigin" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#NatureOrigin" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -87,13 +87,13 @@ "@value" : "Algue" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#AnimalOrigin", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#AnimalOrigin", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NatureOrigin" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#NatureOrigin" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -103,34 +103,34 @@ "@value" : "Animal" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#AnimalPartOrigin", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#AnimalPartOrigin", "@type" : [ "skos:Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#PartOrigin" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#PartOrigin" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Bee" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Bee" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Bull" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Bull" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Cow" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Cow" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Ewe" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Ewe" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Goat" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Goat" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Hen" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Hen" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Pig" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Pig" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Quail" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Quail" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Roster" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Roster" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Sheep" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Sheep" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -140,16 +140,16 @@ "@value" : "Partie ou produit d'un animal" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Asia", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Asia", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ { "@id" : "https://www.wikidata.org/wiki/Q48" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#TerritorialOrigin" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#TerritorialOrigin" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -159,16 +159,16 @@ "@value" : "Asie" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Australia", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Australia", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ { "@id" : "https://www.wikidata.org/wiki/Q3960" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Oceania" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Oceania" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -178,7 +178,7 @@ "@value" : "Australie" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#AuvergneRhoneAlpes", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#AuvergneRhoneAlpes", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ { "@id" : "https://www.wikidata.org/wiki/Q18338206" @@ -188,10 +188,10 @@ "@value" : "ARA" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#France" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#France" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -201,13 +201,13 @@ "@value" : "Auvergne-Rhône-Alpes" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Bacteria", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Bacteria", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NatureOrigin" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#NatureOrigin" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -217,24 +217,24 @@ "@value" : "Bactérie" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Bee", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Bee", "@type" : [ "skos:Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#AnimalPartOrigin" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#AnimalPartOrigin" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#BeeHoney" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#BeeHoney" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#BeePollen" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#BeePollen" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#BeePropolis" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#BeePropolis" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#BeeVenom" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#BeeVenom" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#BeeWax" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#BeeWax" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -244,13 +244,13 @@ "@value" : "Bee" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#BeeHoney", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#BeeHoney", "@type" : [ "skos:Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Bee" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Bee" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -260,13 +260,13 @@ "@value" : "Miel" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#BeePollen", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#BeePollen", "@type" : [ "skos:Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Bee" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Bee" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -276,13 +276,13 @@ "@value" : "Pollen" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#BeePropolis", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#BeePropolis", "@type" : [ "skos:Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Bee" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Bee" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -292,13 +292,13 @@ "@value" : "Propolis" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#BeeVenom", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#BeeVenom", "@type" : [ "skos:Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Bee" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Bee" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -308,13 +308,13 @@ "@value" : "Venom" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#BeeWax", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#BeeWax", "@type" : [ "skos:Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Bee" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Bee" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -324,16 +324,16 @@ "@value" : "Wax" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Belgium", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Belgium", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ { "@id" : "https://www.wikidata.org/wiki/Q31" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Europe" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Europe" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -343,16 +343,16 @@ "@value" : "Belgique" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#BiodynamicLabel", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#BiodynamicLabel", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Certification" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Certification" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Demeter" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Demeter" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -362,16 +362,16 @@ "@value" : "Label biodynamie" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#BleuBlancCoeur_FR", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#BleuBlancCoeur_FR", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ { "@id" : "gs1:PackagingMarkedLabelAccreditationCode-BLEU_BLANC_COEUR" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#EthicalLabel" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#EthicalLabel" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -381,7 +381,7 @@ "@value" : "Bleu-Blanc-Coeur" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#BourgogneFrancheComte", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#BourgogneFrancheComte", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ { "@id" : "https://www.wikidata.org/wiki/Q18578267" @@ -391,10 +391,10 @@ "@value" : "Burgundy-Franche-Comté" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#France" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#France" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -404,16 +404,16 @@ "@value" : "Bourgogne-Franche-Comté" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Brittany", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Brittany", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ { "@id" : "https://www.wikidata.org/wiki/Q12130" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#France" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#France" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -423,13 +423,13 @@ "@value" : "Bretagne" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Bulb", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Bulb", "@type" : [ "skos:Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#PlantPartOrigin" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#PlantPartOrigin" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -439,16 +439,16 @@ "@value" : "Bulbe" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Bull", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Bull", "@type" : [ "skos:Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#AnimalPartOrigin" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#AnimalPartOrigin" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#BullBody" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#BullBody" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -458,13 +458,13 @@ "@value" : "Bœuf" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#BullBody", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#BullBody", "@type" : [ "skos:Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Bull" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Bull" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -474,7 +474,7 @@ "@value" : "Partie du boeuf" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#CentreValLoire", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#CentreValLoire", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ { "@id" : "https://www.wikidata.org/wiki/Q13947" @@ -484,10 +484,10 @@ "@value" : "Centre Loire Valley" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#France" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#France" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -497,7 +497,7 @@ "@value" : "Centre-Val de Loire" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Certification", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Certification", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://purl.org/dc/terms/description" : [ { "@language" : "en", @@ -507,18 +507,18 @@ "@value" : "Les certifications ou labels obtenus par les produits. Exemple : AB, EU bio, DEMETER, Label Rouge..." } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#OrganicLabel" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#OrganicLabel" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#LocalLabel" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#LocalLabel" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#BiodynamicLabel" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#BiodynamicLabel" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#EthicalLabel" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#EthicalLabel" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#MarketingLabel" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#MarketingLabel" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -528,10 +528,10 @@ "@value" : "Certification" } ], "http://www.w3.org/2004/02/skos/core#topConceptOf" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Claim", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Claim", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://purl.org/dc/terms/description" : [ { "@language" : "en", @@ -541,9 +541,9 @@ "@value" : "\"Les allégations nutritionnelles et de santé sont des mentions, images ou symboles valorisant les denrées alimentaires sur le plan nutritionnel ou de la santé. Ce sont par exemple les phrases du type « jus de fruit riche en vitamine C », « riche en calcium », « allégé en sucres », « bon pour le cœur », « le calcium est nécessaire à une ossature normale », etc.\" (source: Direction générale de la concurrence, de la consommation et de la répression des fraudes, https://www.economie.gouv.fr/dgccrf/Consommation/Etiquetage-des-produits/Allegations-nutrionnelles-et-de-sante)" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NutritionalClaim" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#NutritionalClaim" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#HealthClaim" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#HealthClaim" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -553,10 +553,10 @@ "@value" : "Allégations nutritionnelles et de santé" } ], "http://www.w3.org/2004/02/skos/core#topConceptOf" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#ContainsNutrientOrSubstance", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#ContainsNutrientOrSubstance", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://purl.org/dc/terms/description" : [ { "@language" : "en", @@ -566,10 +566,10 @@ "@value" : "\"Une allégation selon laquelle une denrée alimentaire contient un nutriment ou une autre substance pour lequel ou laquelle le présent règlement ne fixe pas de conditions particulières, ou toute autre allégation susceptible d'avoir le même sens pour le consommateur, ne peut être faite que si le produit respecte toutes les dispositions applicables du présent règlement, et notamment l'article 5. Pour les vitamines et les minéraux, les conditions prévues pour l'allégation «source de» s'appliquent.\" (source: Annex of Regulation (EC) No 1924/2006)" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NutritionalClaim" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#NutritionalClaim" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -579,16 +579,16 @@ "@value" : "Contient nutriment ou autre substance" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Corsica", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Corsica", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ { "@id" : "https://www.wikidata.org/wiki/Q14112" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#France" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#France" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -598,18 +598,18 @@ "@value" : "Corse" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Cow", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Cow", "@type" : [ "skos:Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#AnimalPartOrigin" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#AnimalPartOrigin" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#CowBody" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#CowBody" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#CowMilk" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#CowMilk" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -619,13 +619,13 @@ "@value" : "Vache" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#CowBody", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#CowBody", "@type" : [ "skos:Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Cow" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Cow" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -635,13 +635,13 @@ "@value" : "Partie de vache" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#CowMilk", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#CowMilk", "@type" : [ "skos:Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Cow" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Cow" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -651,18 +651,18 @@ "@value" : "Lait de vache" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet", "@type" : [ "http://www.w3.org/2004/02/skos/core#ConceptScheme" ], "http://www.w3.org/2004/02/skos/core#hasTopConcept" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Certification" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Certification" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Claim" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Claim" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#TerritorialOrigin" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#TerritorialOrigin" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NatureOrigin" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#NatureOrigin" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#PartOrigin" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#PartOrigin" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -672,16 +672,16 @@ "@value" : "Product glossary facets" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Demeter", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Demeter", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ { "@id" : "gs1:PackagingMarkedLabelAccreditationCode-DEMETER_LABEL" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#BiodynamicLabel" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#BiodynamicLabel" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -691,7 +691,7 @@ "@value" : "Demeter" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#EnergyFree", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#EnergyFree", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://purl.org/dc/terms/description" : [ { "@language" : "en", @@ -701,10 +701,10 @@ "@value" : "\"Une allégation selon laquelle une denrée alimentaire n'a pas d'apport énergétique, ou toute autre allégation susceptible d'avoir le même sens pour le consommateur, ne peut être faite que si le produit contient au maximum 4 kcal (17 kJ)/100 ml. Dans le cas des édulcorants de table, la limite de 0,4 kcal (1,7 kJ)/portion, ayant des propriétés édulcorantes équivalentes à 6 g de saccharose (approximativement 1 petite cuillérée de saccharose), s'applique.\" (source: Annex of Regulation (EC) No 1924/2006)" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NutritionalClaim" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#NutritionalClaim" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -714,7 +714,7 @@ "@value" : "Sans apport énergétique" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#EnergyReduced", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#EnergyReduced", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://purl.org/dc/terms/description" : [ { "@language" : "en", @@ -724,10 +724,10 @@ "@value" : "\"Une allégation selon laquelle une denrée alimentaire a une valeur énergétique réduite, ou toute autre allégation susceptible d'avoir le même sens pour le consommateur, ne peut être faite que si la valeur énergétique est réduite d'au moins 30 %, en indiquant la ou les caractéristiques entraînant la réduction de la valeur énergétique totale de la denrée alimentaire.\" (source: Annex of Regulation (EC) No 1924/2006)" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NutritionalClaim" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#NutritionalClaim" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -737,16 +737,16 @@ "@value" : "Valeur énergétique réduite" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#England", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#England", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ { "@id" : "https://www.wikidata.org/wiki/Q21" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#UnitedKingdom" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#UnitedKingdom" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -756,30 +756,30 @@ "@value" : "Angleterre" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#EthicalLabel", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#EthicalLabel", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Certification" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Certification" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Milk-fed" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Milk-fed" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#RedLabel_FR" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#RedLabel_FR" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#FSC" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#FSC" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#MSC" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#MSC" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#HEV" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#HEV" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#BleuBlancCoeur_FR" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#BleuBlancCoeur_FR" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#FairTradeMaxHaavelar" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#FairTradeMaxHaavelar" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#RainforestAlliance" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#RainforestAlliance" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -789,37 +789,37 @@ "@value" : "Label éthique" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Europe", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Europe", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ { "@id" : "https://www.wikidata.org/wiki/Q46" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#TerritorialOrigin" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#TerritorialOrigin" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#France" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#France" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#UnitedKingdom" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#UnitedKingdom" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Ireland" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Ireland" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Belgium" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Belgium" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Germany" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Germany" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Spain" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Spain" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Portugal" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Portugal" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Italy" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Italy" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Switzerland" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Switzerland" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Netherlands" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Netherlands" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -829,18 +829,18 @@ "@value" : "Europe" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Ewe", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Ewe", "@type" : [ "skos:Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#AnimalPartOrigin" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#AnimalPartOrigin" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#EweBody" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#EweBody" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#EweMilk" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#EweMilk" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -850,13 +850,13 @@ "@value" : "Ewe" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#EweBody", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#EweBody", "@type" : [ "skos:Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Ewe" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Ewe" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -866,13 +866,13 @@ "@value" : "Partie de brebis" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#EweMilk", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#EweMilk", "@type" : [ "skos:Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Ewe" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Ewe" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -882,7 +882,7 @@ "@value" : "Sheep milk" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#FSC", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#FSC", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ { "@id" : "gs1:PackagingMarkedLabelAccreditationCode-FOREST_STEWARDSHIP_COUNCIL_LABEL" @@ -895,10 +895,10 @@ "@value" : "FSC" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#EthicalLabel" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#EthicalLabel" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -908,7 +908,7 @@ "@value" : "Forêt durable FSC" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#FairTradeMaxHaavelar", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#FairTradeMaxHaavelar", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ { "@id" : "gs1:PackagingMarkedLabelAccreditationCode-MAX_HAVELAAR" @@ -921,10 +921,10 @@ "@value" : "Max Haavelar" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#EthicalLabel" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#EthicalLabel" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -934,7 +934,7 @@ "@value" : "Fairtrade Max Haavelar" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#FatFree", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#FatFree", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://purl.org/dc/terms/description" : [ { "@language" : "en", @@ -944,10 +944,10 @@ "@value" : "\"Une allégation selon laquelle une denrée alimentaire ne contient pas de matières grasses, ou toute autre allégation susceptible d'avoir le même sens pour le consommateur, ne peut être faite que si le produit ne contient pas plus de 0,5 g de matières grasses par 100 g ou par 100 ml. Cependant, les allégations du type «à X % sans matières grasses» sont interdites.\" (source: Annex of Regulation (EC) No 1924/2006)" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NutritionalClaim" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#NutritionalClaim" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -957,13 +957,13 @@ "@value" : "Sans matières grasses" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Flower", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Flower", "@type" : [ "skos:Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#PlantPartOrigin" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#PlantPartOrigin" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -973,7 +973,7 @@ "@value" : "Flower" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#France", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#France", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#altLabel" : [ { "@language" : "en", @@ -983,40 +983,40 @@ "@value" : "FR" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Europe" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Europe" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#isDefinedBy" : [ { "@id" : "https://www.wikidata.org/wiki/Q142" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#AuvergneRhoneAlpes" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#AuvergneRhoneAlpes" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#BourgogneFrancheComte" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#BourgogneFrancheComte" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Brittany" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Brittany" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#CentreValLoire" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#CentreValLoire" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Corsica" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Corsica" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#GrandEst" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#GrandEst" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#HautsDeFrance" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#HautsDeFrance" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#IleDeFrance" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#IleDeFrance" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Normandy" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Normandy" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NouvelleAquitaine" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#NouvelleAquitaine" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Occitania" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Occitania" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#PaysDeLoire" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#PaysDeLoire" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#ProvenceAlpesCotesAzur" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#ProvenceAlpesCotesAzur" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1026,13 +1026,13 @@ "@value" : "France" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Fruit", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Fruit", "@type" : [ "skos:Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#PlantPartOrigin" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#PlantPartOrigin" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1042,13 +1042,13 @@ "@value" : "Fruit" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Funghi", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Funghi", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NatureOrigin" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#NatureOrigin" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1058,16 +1058,16 @@ "@value" : "Champignon" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Germany", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Germany", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ { "@id" : "https://www.wikidata.org/wiki/Q183" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Europe" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Europe" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1077,13 +1077,13 @@ "@value" : "Allemagne" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#GlutenFree", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#GlutenFree", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#OtherClaim" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#OtherClaim" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1093,18 +1093,18 @@ "@value" : "Sans gluten" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Goat", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Goat", "@type" : [ "skos:Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#AnimalPartOrigin" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#AnimalPartOrigin" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#GoatBody" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#GoatBody" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#GoatMilk" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#GoatMilk" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -1114,13 +1114,13 @@ "@value" : "Goat" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#GoatBody", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#GoatBody", "@type" : [ "skos:Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Goat" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Goat" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1130,13 +1130,13 @@ "@value" : "Partie de chèvre" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#GoatMilk", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#GoatMilk", "@type" : [ "skos:Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Goat" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Goat" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -1146,16 +1146,16 @@ "@value" : "Goat milk" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#GrandEst", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#GrandEst", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ { "@id" : "https://www.wikidata.org/wiki/Q18677983" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#France" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#France" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1165,7 +1165,7 @@ "@value" : "Grand Est" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#HEV", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#HEV", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ { "@id" : "gs1:PackagingMarkedLabelAccreditationCode-HAUTE_VALEUR_ENVIRONNEMENTALE" @@ -1178,10 +1178,10 @@ "@value" : "HVE" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#EthicalLabel" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#EthicalLabel" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1191,16 +1191,16 @@ "@value" : "Haute Valeur Environnementale" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#HautsDeFrance", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#HautsDeFrance", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ { "@id" : "https://www.wikidata.org/wiki/Q18677767" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#France" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#France" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1210,17 +1210,17 @@ "@value" : "Hauts-de-France" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#HealthClaim", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#HealthClaim", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://purl.org/dc/terms/description" : [ { "@language" : "en", "@value" : "A health claim is any statement about a relationship between food and health." } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Claim" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Claim" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1230,18 +1230,18 @@ "@value" : "Allégation santé" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Hen", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Hen", "@type" : [ "skos:Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#AnimalPartOrigin" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#AnimalPartOrigin" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#HenBody" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#HenBody" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#HenEgg" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#HenEgg" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1251,13 +1251,13 @@ "@value" : "Poule" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#HenBody", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#HenBody", "@type" : [ "skos:Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Hen" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Hen" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1267,13 +1267,13 @@ "@value" : "Partie de poule" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#HenEgg", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#HenEgg", "@type" : [ "skos:Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Hen" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Hen" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1283,7 +1283,7 @@ "@value" : "Œuf de poule" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#HighFibre", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#HighFibre", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://purl.org/dc/terms/description" : [ { "@language" : "en", @@ -1293,10 +1293,10 @@ "@value" : "\"Une allégation selon laquelle une denrée alimentaire est riche en fibres, ou toute autre allégation susceptible d'avoir le même sens pour le consommateur, ne peut être faite que si le produit contient au moins 6 g de fibres par 100 g ou au moins 3 g de fibres par 100 kcal.\" (source: Annex of Regulation (EC) No 1924/2006)" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NutritionalClaim" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#NutritionalClaim" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1306,7 +1306,7 @@ "@value" : "Riche en fibres" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#HighMonounsaturatedFat", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#HighMonounsaturatedFat", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://purl.org/dc/terms/description" : [ { "@language" : "en", @@ -1316,10 +1316,10 @@ "@value" : "\"Une allégation selon laquelle une denrée alimentaire est riche en graisses monoinsaturées, ou toute allégation susceptible d’avoir le même sens pour le consommateur, ne peut être faite que si le produit contient au moins 45 % d’acides gras dérivés de graisses monoinsaturées et si l’énergie fournie par les graisses monoinsaturées représente plus de 20 % de l’apport énergétique du produit.\" (source: Annex of Regulation (EC) No 1924/2006)" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NutritionalClaim" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#NutritionalClaim" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1329,7 +1329,7 @@ "@value" : "Riche en graisses monoinsaturées" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#HighOmega3FattyAcids", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#HighOmega3FattyAcids", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://purl.org/dc/terms/description" : [ { "@language" : "en", @@ -1339,10 +1339,10 @@ "@value" : "\"Une allégation selon laquelle une denrée alimentaire est riche en acide gras oméga-3, ou toute allégation susceptible d’avoir le même sens pour le consommateur, ne peut être faite que si le produit contient au moins 0,6 g d’acide alphalinolénique pour 100 g et 100 kcal, ou au moins 80 mg d’acide eicosapentaénoïque et d’acide docosahexénoïque combinés pour 100 g et 100 kcal.\" (source: Annex of Regulation (EC) No 1924/2006)" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NutritionalClaim" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#NutritionalClaim" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1352,7 +1352,7 @@ "@value" : "Riche en acide gras Oméga-3" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#HighPolyunsaturatedFat", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#HighPolyunsaturatedFat", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://purl.org/dc/terms/description" : [ { "@language" : "en", @@ -1362,10 +1362,10 @@ "@value" : "\"Une allégation selon laquelle une denrée alimentaire est riche en graisses polyinsaturées, ou toute allégation susceptible d’avoir le même sens pour le consommateur, ne peut être faite que si le produit contient au moins 45 % d’acides gras dérivés de graisses polyinsaturées et si l’énergie fournie par les graisses polyinsaturées représente plus de 20 % de l’apport énergétique du produit.\" (source: Annex of Regulation (EC) No 1924/2006)" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NutritionalClaim" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#NutritionalClaim" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1375,7 +1375,7 @@ "@value" : "Riche en graisses polyinsaturées" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#HighProtein", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#HighProtein", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://purl.org/dc/terms/description" : [ { "@language" : "en", @@ -1385,10 +1385,10 @@ "@value" : "\"Une allégation selon laquelle une denrée alimentaire est riche en protéines, ou toute autre allégation susceptible d'avoir le même sens pour le consommateur, ne peut être faite que si 20 % au moins de la valeur énergétique de la denrée alimentaire sont produits par des protéines.\" (source: Annex of Regulation (EC) No 1924/2006)" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NutritionalClaim" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#NutritionalClaim" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1398,7 +1398,7 @@ "@value" : "Riche en protéines" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#HighUnsaturatedFat", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#HighUnsaturatedFat", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://purl.org/dc/terms/description" : [ { "@language" : "en", @@ -1408,10 +1408,10 @@ "@value" : "\"Une allégation selon laquelle une denrée alimentaire est riche en graisses insaturées, ou toute allégation susceptible d’avoir le même sens pour le consommateur, ne peut être faite que si le produit contient au moins 70 % d’acides gras dérivés de graisses insaturées et si l’énergie fournie par les graisses insaturées représente plus de 20 % de l’apport énergétique du produit.\" (source: Annex of Regulation (EC) No 1924/2006)" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NutritionalClaim" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#NutritionalClaim" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1421,7 +1421,7 @@ "@value" : "Riche en graisses insaturées" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#HighVitaminsMinerals", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#HighVitaminsMinerals", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://purl.org/dc/terms/description" : [ { "@language" : "en", @@ -1431,10 +1431,10 @@ "@value" : "\"Une allégation selon laquelle une denrée alimentaire est riche en vitamines et/ou en minéraux, ou toute autre allégation susceptible d'avoir le même sens pour le consommateur, ne peut être faite que si le produit contient au moins deux fois la teneur requise pour l'allégation «source de [NOM DES VITAMINES] et/ou [NOM DES MINÉRAUX]».\" (source: Annex of Regulation (EC) No 1924/2006)" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NutritionalClaim" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#NutritionalClaim" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1444,7 +1444,7 @@ "@value" : "Riche en vitamines et/ou de minéraux" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#IGP_EU", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#IGP_EU", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ { "@id" : "gs1:PackagingMarkedLabelAccreditationCode-IGP" @@ -1457,10 +1457,10 @@ "@value" : "IGP" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#LocalLabel" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#LocalLabel" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1470,7 +1470,7 @@ "@value" : "Indication géographique de provenance" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#IleDeFrance", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#IleDeFrance", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ { "@id" : "https://www.wikidata.org/wiki/Q13917" @@ -1483,10 +1483,10 @@ "@value" : "IDF" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#France" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#France" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1496,7 +1496,7 @@ "@value" : "Île-de-France" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#IncreasedNutrient", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#IncreasedNutrient", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://purl.org/dc/terms/description" : [ { "@language" : "en", @@ -1506,10 +1506,10 @@ "@value" : "\"Une allégation affirmant que la teneur en un ou plusieurs nutriments, autres que des vitamines ou des minéraux, a été augmentée, ou toute autre allégation susceptible d'avoir le même sens pour le consommateur, ne peut être faite que si le produit remplit les conditions applicables à l'allégation «source de» et si l'augmentation de cette teneur est d'au moins 30 % par rapport à un produit similaire.\" (source: Annex of Regulation (EC) No 1924/2006)" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NutritionalClaim" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#NutritionalClaim" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1519,7 +1519,7 @@ "@value" : "Enrichi en nutriment" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Ireland", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Ireland", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ { "@id" : "https://www.wikidata.org/wiki/Q27" @@ -1532,10 +1532,10 @@ "@value" : "Irlande" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Europe" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Europe" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1545,16 +1545,16 @@ "@value" : "République d'Irlande" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Italy", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Italy", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ { "@id" : "https://www.wikidata.org/wiki/Q38" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Europe" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Europe" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1564,13 +1564,13 @@ "@value" : "Italie" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Leaf", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Leaf", "@type" : [ "skos:Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#PlantPartOrigin" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#PlantPartOrigin" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -1580,7 +1580,7 @@ "@value" : "Leaf" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Light", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Light", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://purl.org/dc/terms/description" : [ { "@language" : "en", @@ -1590,10 +1590,10 @@ "@value" : "\"Une allégation selon laquelle un produit est «allégé» ou «light», ou toute autre allégation susceptible d'avoir le même sens pour le consommateur, doit remplir les mêmes conditions que celles applicables aux termes «réduit en»; elle doit aussi être accompagnée d'une indication de la ou les caractéristiques entraînant l'allégement de la denrée alimentaire.\" (source: Annex of Regulation (EC) No 1924/2006)" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NutritionalClaim" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#NutritionalClaim" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -1603,7 +1603,7 @@ "@value" : "Light/Lite" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#LightLite", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#LightLite", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://purl.org/dc/terms/description" : [ { "@language" : "en", @@ -1613,10 +1613,10 @@ "@value" : "\"Une allégation selon laquelle un produit est «allégé» ou «light», ou toute autre allégation susceptible d'avoir le même sens pour le consommateur, doit remplir les mêmes conditions que celles applicables aux termes «réduit en»; elle doit aussi être accompagnée d'une indication de la ou les caractéristiques entraînant l'allégement de la denrée alimentaire.\" (source: Annex of Regulation (EC) No 1924/2006)" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NutritionalClaim" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#NutritionalClaim" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -1626,24 +1626,24 @@ "@value" : "Low/Light" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#LocalLabel", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#LocalLabel", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Certification" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Certification" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#PaysansDeNature_FR" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#PaysansDeNature_FR" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#AOC_FR" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#AOC_FR" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#PGS" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#PGS" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#AOP_EU" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#AOP_EU" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#IGP_EU" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#IGP_EU" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1653,7 +1653,7 @@ "@value" : "Label local" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#LowEnergy", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#LowEnergy", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://purl.org/dc/terms/description" : [ { "@language" : "en", @@ -1663,10 +1663,10 @@ "@value" : "\"Une allégation selon laquelle une denrée alimentaire a une faible valeur énergétique, ou toute autre allégation susceptible d'avoir le même sens pour le consommateur, ne peut être faite que pour un produit contenant au maximum 40 kcal (170 kJ)/100 g dans le cas des solides ou au maximum 20 kcal (80 kJ)/100 ml dans le cas des liquides. Dans le cas des édulcorants de table, la limite de 4 kcal (17 kJ)/portion, avec des propriétés édulcorantes équivalentes à 6 g de saccharose (approximativement 1 petite cuillérée de saccharose), s'applique.\" (source: Annex of Regulation (EC) No 1924/2006)" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NutritionalClaim" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#NutritionalClaim" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1676,7 +1676,7 @@ "@value" : "Faible valeur énergétique" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#LowFat", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#LowFat", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://purl.org/dc/terms/description" : [ { "@language" : "en", @@ -1686,10 +1686,10 @@ "@value" : "\"Une allégation selon laquelle une denrée alimentaire a une faible teneur en matières grasses, ou toute autre allégation susceptible d'avoir le même sens pour le consommateur, ne peut être faite que si le produit ne contient pas plus de 3 g de matières grasses par 100 g dans le cas des solides ou 1,5 g de matières grasses par 100 ml dans le cas des liquides (1,8 g de matières grasses par 100 ml pour le lait demi-écrémé).\" (source: Annex of Regulation (EC) No 1924/2006)" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NutritionalClaim" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#NutritionalClaim" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1699,7 +1699,7 @@ "@value" : "Faible teneur en matière grasse" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#LowSaturatedFat", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#LowSaturatedFat", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://purl.org/dc/terms/description" : [ { "@language" : "en", @@ -1709,10 +1709,10 @@ "@value" : "\"Une allégation selon laquelle une denrée alimentaire a une faible teneur en graisses saturées, ou toute autre allégation susceptible d'avoir le même sens pour le consommateur, ne peut être faite que si la somme des acides gras saturés et des acides gras trans contenus dans le produit n'est pas supérieure à 1,5 g par 100 g de solide ou à 0,75 g par 100 ml de liquide, la somme des acides gras saturés et des acides gras trans ne pouvant pas produire, dans les deux cas, plus de 10 % de l'énergie.\" (source: Annex of Regulation (EC) No 1924/2006)" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NutritionalClaim" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#NutritionalClaim" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1722,7 +1722,7 @@ "@value" : "Faible teneur en graisses saturées" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#LowSodiumSalt", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#LowSodiumSalt", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://purl.org/dc/terms/description" : [ { "@language" : "en", @@ -1732,10 +1732,10 @@ "@value" : "\"Une allégation selon laquelle une denrée alimentaire est pauvre en sodium ou en sel, ou toute autre allégation susceptible d'avoir le même sens pour le consommateur, ne peut être faite que si le produit ne contient pas plus de 0,12 g de sodium ou de l'équivalent en sel par 100 g ou par 100 ml. En ce qui concerne les eaux, autres que les eaux minérales naturelles relevant du champ d'application de la directive 80/777/CEE, cette valeur ne devrait pas être supérieure à 2 mg de sodium par 100 ml.\" (source: Annex of Regulation (EC) No 1924/2006)" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NutritionalClaim" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#NutritionalClaim" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1745,7 +1745,7 @@ "@value" : "Pauvre en sodium/sel" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#LowSugars", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#LowSugars", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://purl.org/dc/terms/description" : [ { "@language" : "en", @@ -1755,10 +1755,10 @@ "@value" : "\"Une allégation selon laquelle une denrée alimentaire a une faible teneur en sucres, ou toute autre allégation susceptible d'avoir le même sens pour le consommateur, ne peut être faite que si le produit ne contient pas plus de 5 g de sucres par 100 g dans le cas des solides ou 2,5 g de sucres par 100 ml dans le cas des liquides.\" (source: Annex of Regulation (EC) No 1924/2006)" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NutritionalClaim" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#NutritionalClaim" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1768,7 +1768,7 @@ "@value" : "Faible teneur en sucres" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#MSC", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#MSC", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ { "@id" : "gs1:PackagingMarkedLabelAccreditationCode-MARINE_STEWARDSHIP_COUNCIL_LABEL" @@ -1781,10 +1781,10 @@ "@value" : "MSC" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#EthicalLabel" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#EthicalLabel" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1794,18 +1794,18 @@ "@value" : "Pêche durable MSC" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#MarketingLabel", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#MarketingLabel", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Certification" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Certification" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#ProductOfTheYear" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#ProductOfTheYear" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#TasteOfTheYear" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#TasteOfTheYear" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1815,13 +1815,13 @@ "@value" : "Label marketing" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Milk-fed", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Milk-fed", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#EthicalLabel" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#EthicalLabel" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1831,13 +1831,13 @@ "@value" : "Nourri au lait" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Mineral", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Mineral", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NatureOrigin" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#NatureOrigin" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1847,13 +1847,13 @@ "@value" : "Minéral" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#MultiGeoOrigin", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#MultiGeoOrigin", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#TerritorialOrigin" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#TerritorialOrigin" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1863,13 +1863,13 @@ "@value" : "Origine territorial multiple" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#MultiNatureOrigin", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#MultiNatureOrigin", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NatureOrigin" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#NatureOrigin" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1879,13 +1879,13 @@ "@value" : "Origine multiple" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#MultiOrigin", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#MultiOrigin", "@type" : [ "skos:Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#PartOrigin" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#PartOrigin" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1895,7 +1895,7 @@ "@value" : "Origine multiple" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Natural", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Natural", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://purl.org/dc/terms/description" : [ { "@language" : "en", @@ -1905,10 +1905,10 @@ "@value" : "\"Lorsqu'une denrée alimentaire remplit naturellement la ou les conditions fixées dans la présente annexe pour l'utilisation d'une allégation nutritionnelle, le terme «naturellement/naturel» peut accompagner cette allégation.\" (source: Annex of Regulation (EC) No 1924/2006)" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NutritionalClaim" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#NutritionalClaim" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -1918,7 +1918,7 @@ "@value" : "Naturally/Natural" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NatureEtProgres", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#NatureEtProgres", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ { "@id" : "gs1:PackagingMarkedLabelAccreditationCode-NATURE_ET_PROGRES" @@ -1928,10 +1928,10 @@ "@value" : "Nature and Progress" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#OrganicLabel" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#OrganicLabel" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1941,7 +1941,7 @@ "@value" : "Nature et progrès" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NatureOrigin", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#NatureOrigin", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://purl.org/dc/terms/description" : [ { "@language" : "en", @@ -1955,26 +1955,26 @@ "@value" : "We made the list for the prototype with open nomenclature to start with for plants and animals but might be better to connected directly from relevant source ontologies for variaties, races, etc. (http://open-nomenclature.org/fra/nomenclatures/varieties/tree)." } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#UnknownNatureOrigin" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#UnknownNatureOrigin" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#MultiNatureOrigin" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#MultiNatureOrigin" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#PlantOrigin" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#PlantOrigin" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#AnimalOrigin" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#AnimalOrigin" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Mineral" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Mineral" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Funghi" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Funghi" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Algae" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Algae" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Bacteria" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Bacteria" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Water" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Water" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1984,19 +1984,19 @@ "@value" : "Source naturelle d'origine" } ], "http://www.w3.org/2004/02/skos/core#topConceptOf" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Netherlands", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Netherlands", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ { "@id" : "https://www.wikidata.org/wiki/Q55" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Europe" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Europe" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2006,16 +2006,16 @@ "@value" : "Pays bas" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NewZealand", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#NewZealand", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ { "@id" : "https://www.wikidata.org/wiki/Q664" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Oceania" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Oceania" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2025,7 +2025,7 @@ "@value" : "Nouvelle Zélande" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NoAddedSodiumSalt", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#NoAddedSodiumSalt", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://purl.org/dc/terms/description" : [ { "@language" : "en", @@ -2035,10 +2035,10 @@ "@value" : "\"Une allégation selon laquelle il n’a pas été ajouté de sodium ou de sel à une denrée alimentaire, ou toute autre allégation susceptible d’avoir le même sens pour le consommateur, ne peut être faite que si le produit ne contient pas de sodium ou de sel ajouté ou tout autre ingrédient contenant du sodium ou du sel ajouté et si le produit ne contient pas plus de 0,12 g de sodium ou de l’équivalent en sel par 100 g ou par 100 ml.\" (source: Annex of Regulation (EC) No 1924/2006)" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NutritionalClaim" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#NutritionalClaim" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2048,7 +2048,7 @@ "@value" : "Sans sodium/sel ajouté" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NoAddedSugars", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#NoAddedSugars", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://purl.org/dc/terms/description" : [ { "@language" : "en", @@ -2058,10 +2058,10 @@ "@value" : "\"Une allégation selon laquelle il n'a pas été ajouté de sucres à une denrée alimentaire, ou toute autre allégation susceptible d'avoir le même sens pour le consommateur, ne peut être faite que si le produit ne contient pas de monosaccharides ou disaccharides ajoutés ou toute autre denrée alimentaire utilisée pour ses propriétés édulcorantes. Si les sucres sont naturellement présents dans la denrée alimentaire, l'indication suivante devrait également figurer sur l'étiquette: «CONTIENT DES SUCRES NATURELLEMENT PRÉSENTS».\" (source: Annex of Regulation (EC) No 1924/2006)" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NutritionalClaim" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#NutritionalClaim" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2071,16 +2071,16 @@ "@value" : "Sans sucres ajoutés" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Normandy", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Normandy", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ { "@id" : "https://www.wikidata.org/wiki/Q18677875" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#France" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#France" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2090,16 +2090,16 @@ "@value" : "Normandie" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NorthAmerica", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#NorthAmerica", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ { "@id" : "https://www.wikidata.org/wiki/Q49" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#TerritorialOrigin" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#TerritorialOrigin" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2109,16 +2109,16 @@ "@value" : "Amérique du Nord" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NorthernIreland", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#NorthernIreland", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ { "@id" : "https://www.wikidata.org/wiki/Q26" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#UnitedKingdom" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#UnitedKingdom" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2128,7 +2128,7 @@ "@value" : "Irlande du Nord" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NouvelleAquitaine", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#NouvelleAquitaine", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ { "@id" : "https://www.wikidata.org/wiki/Q18678082" @@ -2138,10 +2138,10 @@ "@value" : "NA" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#France" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#France" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2151,74 +2151,74 @@ "@value" : "Nouvelle-Aquitaine" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NutritionalClaim", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#NutritionalClaim", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Claim" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Claim" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#LowEnergy" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#LowEnergy" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#EnergyReduced" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#EnergyReduced" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#EnergyFree" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#EnergyFree" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#LowFat" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#LowFat" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#FatFree" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#FatFree" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#LowSaturatedFat" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#LowSaturatedFat" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#SaturatedFatFree" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#SaturatedFatFree" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#LowSugars" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#LowSugars" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#SugarsFree" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#SugarsFree" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NoAddedSugars" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#NoAddedSugars" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#LowSodiumSalt" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#LowSodiumSalt" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#VeryLowSodiumSalt" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#VeryLowSodiumSalt" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#SodiumOrSaltFree" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#SodiumOrSaltFree" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NoAddedSodiumSalt" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#NoAddedSodiumSalt" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#SourceOfFibre" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#SourceOfFibre" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#HighFibre" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#HighFibre" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#SourceOfProtein" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#SourceOfProtein" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#HighProtein" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#HighProtein" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#SourceOfVitaminsMinerals" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#SourceOfVitaminsMinerals" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#HighVitaminsMinerals" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#HighVitaminsMinerals" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#ContainsNutrientOrSubstance" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#ContainsNutrientOrSubstance" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#IncreasedNutrient" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#IncreasedNutrient" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#ReducedNutrient" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#ReducedNutrient" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Light" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Light" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Natural" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Natural" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#SourceOfOmega3FattyAcids" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#SourceOfOmega3FattyAcids" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#HighOmega3FattyAcids" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#HighOmega3FattyAcids" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#HighMonounsaturatedFat" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#HighMonounsaturatedFat" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#HighPolyunsaturatedFat" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#HighPolyunsaturatedFat" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#HighUnsaturatedFat" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#HighUnsaturatedFat" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2228,16 +2228,16 @@ "@value" : "Allégation nutritionnelle" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Occitania", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Occitania", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ { "@id" : "https://www.wikidata.org/wiki/Q18678265" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#France" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#France" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2247,21 +2247,21 @@ "@value" : "Occitanie" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Oceania", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Oceania", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ { "@id" : "https://www.wikidata.org/wiki/Q55643" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#TerritorialOrigin" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#TerritorialOrigin" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Australia" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Australia" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NewZealand" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#NewZealand" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2271,16 +2271,16 @@ "@value" : "Océanie" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Organic-AB", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Organic-AB", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ { "@id" : "gs1:PackagingMarkedLabelAccreditationCode-AGRICULTURE_BIOLOGIQUE" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#OrganicLabel" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#OrganicLabel" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2290,13 +2290,13 @@ "@value" : "Agriculture Biologique" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Organic-BioCoherence", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Organic-BioCoherence", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#OrganicLabel" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#OrganicLabel" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2306,7 +2306,7 @@ "@value" : "Bio Coherence" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Organic-EU", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Organic-EU", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ { "@id" : "gs1:PackagingMarkedLabelAccreditationCode-EU_ORGANIC_FARMING" @@ -2316,10 +2316,10 @@ "@value" : "Eurofeuille" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#OrganicLabel" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#OrganicLabel" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2329,22 +2329,22 @@ "@value" : "Agriculture Biologique EU" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#OrganicLabel", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#OrganicLabel", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Certification" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Certification" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Organic-AB" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Organic-AB" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Organic-EU" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Organic-EU" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Organic-BioCoherence" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Organic-BioCoherence" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NatureEtProgres" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#NatureEtProgres" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2354,7 +2354,7 @@ "@value" : "Label biologique" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#OtherClaim", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#OtherClaim", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://purl.org/dc/terms/description" : [ { "@language" : "en", @@ -2364,17 +2364,17 @@ "@value" : "Toute autre allégation qui déclare, suggère ou implique qu'un aliment a des propriétés particulières." } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Claim" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Claim" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Vegan" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Vegan" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Vegetarian" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Vegetarian" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#GlutenFree" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#GlutenFree" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2384,7 +2384,7 @@ "@value" : "Autre allégation" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#PGS", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#PGS", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ { "@id" : "gs1:PackagingMarkedLabelAccreditationCode-PROTECTED_GEOGRAPHICAL_INDICATION" @@ -2397,10 +2397,10 @@ "@value" : "PGS" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#LocalLabel" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#LocalLabel" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2410,7 +2410,7 @@ "@value" : "Statut géographique protégé" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#PartOrigin", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#PartOrigin", "@type" : [ "skos:Concept" ], "http://purl.org/dc/elements/1.1/description" : [ { "@language" : "en", @@ -2424,16 +2424,16 @@ "@value" : "If I sell carrots, I can sell only the roots, the whole pants with the leaves, or only the leaves. Examples : root, leaves, seeds..." } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#AnimalPartOrigin" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#AnimalPartOrigin" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#MultiOrigin" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#MultiOrigin" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#PlantPartOrigin" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#PlantPartOrigin" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#UnknownPartOrigin" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#UnknownPartOrigin" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2443,10 +2443,10 @@ "@value" : "Partie d'origine" } ], "http://www.w3.org/2004/02/skos/core#topConceptOf" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#PaysDeLoire", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#PaysDeLoire", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ { "@id" : "https://www.wikidata.org/wiki/Q16994" @@ -2456,10 +2456,10 @@ "@value" : "Loire lands" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#France" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#France" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2469,17 +2469,17 @@ "@value" : "Pays de la Loire" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#PaysansDeNature_FR", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#PaysansDeNature_FR", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#altLabel" : [ { "@language" : "en", "@value" : "Farmers of Nature" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#LocalLabel" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#LocalLabel" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2489,16 +2489,16 @@ "@value" : "Paysans de Nature" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Pig", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Pig", "@type" : [ "skos:Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#AnimalPartOrigin" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#AnimalPartOrigin" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#PigBody" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#PigBody" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -2508,13 +2508,13 @@ "@value" : "Pig" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#PigBody", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#PigBody", "@type" : [ "skos:Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Pig" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Pig" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -2524,13 +2524,13 @@ "@value" : "Pig's body" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#PlantOrigin", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#PlantOrigin", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NatureOrigin" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#NatureOrigin" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2540,32 +2540,32 @@ "@value" : "Plante" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#PlantPartOrigin", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#PlantPartOrigin", "@type" : [ "skos:Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#PartOrigin" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#PartOrigin" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Bulb" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Bulb" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Flower" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Flower" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Fruit" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Fruit" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Leaf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Leaf" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Root" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Root" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Seed" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Seed" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Stem" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Stem" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Tuber" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Tuber" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#WholePlant" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#WholePlant" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2575,16 +2575,16 @@ "@value" : "Partie ou produit d'une plante" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Portugal", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Portugal", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ { "@id" : "https://www.wikidata.org/wiki/Q45" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Europe" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Europe" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2594,16 +2594,16 @@ "@value" : "Portugal" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#ProductOfTheYear", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#ProductOfTheYear", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ { "@id" : "gs1:PackagingMarkedLabelAccreditationCode-PRODUCT_OF_THE_YEAR_CONSUMER_SURVEY" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#MarketingLabel" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#MarketingLabel" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2613,7 +2613,7 @@ "@value" : "Elu produit de l'année" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#ProvenceAlpesCotesAzur", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#ProvenceAlpesCotesAzur", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ { "@id" : "https://www.wikidata.org/wiki/Q15104" @@ -2626,10 +2626,10 @@ "@value" : "PACA" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#France" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#France" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2639,16 +2639,16 @@ "@value" : "Provence-Alpes-Côte d’Azur" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Quail", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Quail", "@type" : [ "skos:Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#AnimalPartOrigin" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#AnimalPartOrigin" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#QuailEgg" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#QuailEgg" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -2658,13 +2658,13 @@ "@value" : "Quail" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#QuailEgg", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#QuailEgg", "@type" : [ "skos:Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Quail" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Quail" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2674,16 +2674,16 @@ "@value" : "Œuf de caille" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#RainforestAlliance", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#RainforestAlliance", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ { "@id" : "gs1:PackagingMarkedLabelAccreditationCode-RAINFOREST_ALLIANCE" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#EthicalLabel" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#EthicalLabel" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2693,7 +2693,7 @@ "@value" : "Rainforest Alliance" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#RedLabel_FR", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#RedLabel_FR", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ { "@id" : "gs1:PackagingMarkedLabelAccreditationCode-LABEL_ROUGE" @@ -2703,10 +2703,10 @@ "@value" : "Red Label" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#EthicalLabel" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#EthicalLabel" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2716,7 +2716,7 @@ "@value" : "Label Rouge" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#ReducedNutrient", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#ReducedNutrient", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://purl.org/dc/terms/description" : [ { "@language" : "en", @@ -2726,10 +2726,10 @@ "@value" : "\"Une allégation affirmant que la teneur en un ou plusieurs nutriments a été réduite, ou toute autre allégation susceptible d'avoir le même sens pour le consommateur, ne peut être faite que si la réduction de cette teneur est d'au moins 30 % par rapport à un produit similaire, sauf s'il s'agit de micronutriments, pour lesquels une différence de 10 % par rapport aux valeurs de référence fixées par la directive 90/496/CEE est admissible, ou s'il s'agit de sodium ou d'équivalent en sel, pour lesquels une différence de 25 % est admissible. L’allégation «réduit en graisses saturées», ou toute autre allégation susceptible d’avoir le même sens pour le consommateur, ne peut être faite que: a) si la somme des acides gras saturés et des acides gras trans contenus dans le produit auquel s’applique l’allégation est au moins de 30 % inférieure à la somme des acides gras saturés et des acides gras trans contenus dans un produit similaire; et b) si la teneur en acides gras trans dans le produit auquel s’applique l’allégation est inférieure ou égale à celle d’un produit similaire. L’allégation «réduit en sucres», ou toute autre allégation susceptible d’avoir le même sens pour le consommateur, ne peut être faite que si la valeur énergétique du produit auquel s’applique l’allégation est inférieure ou égale à celle d’un produit similaire.\" (source: Annex of Regulation (EC) No 1924/2006)" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NutritionalClaim" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#NutritionalClaim" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2739,13 +2739,13 @@ "@value" : "Réduit en nutriment" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Root", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Root", "@type" : [ "skos:Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#PlantPartOrigin" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#PlantPartOrigin" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -2755,16 +2755,16 @@ "@value" : "Root" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Roster", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Roster", "@type" : [ "skos:Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#AnimalPartOrigin" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#AnimalPartOrigin" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#RosterBody" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#RosterBody" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -2774,13 +2774,13 @@ "@value" : "Rooster" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#RosterBody", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#RosterBody", "@type" : [ "skos:Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Roster" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Roster" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -2790,7 +2790,7 @@ "@value" : "Rooster's body" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#SaturatedFatFree", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#SaturatedFatFree", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://purl.org/dc/terms/description" : [ { "@language" : "en", @@ -2800,10 +2800,10 @@ "@value" : "\"Une allégation selon laquelle une denrée alimentaire ne contient pas de graisses saturées, ou toute autre allégation susceptible d'avoir le même sens pour le consommateur, ne peut être faite que si la somme des acides gras saturés et des acides gras trans n'excède pas 0,1 g de graisses saturées par 100 g ou par 100 ml.\" (source: Annex of Regulation (EC) No 1924/2006)" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NutritionalClaim" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#NutritionalClaim" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2813,16 +2813,16 @@ "@value" : "Sans graisses saturées" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Scotland", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Scotland", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ { "@id" : "https://www.wikidata.org/wiki/Q22" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#UnitedKingdom" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#UnitedKingdom" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2832,13 +2832,13 @@ "@value" : "Ecosse" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Seed", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Seed", "@type" : [ "skos:Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#PlantPartOrigin" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#PlantPartOrigin" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -2848,16 +2848,16 @@ "@value" : "Seed" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Sheep", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Sheep", "@type" : [ "skos:Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#AnimalPartOrigin" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#AnimalPartOrigin" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#SheepBody" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#SheepBody" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -2867,13 +2867,13 @@ "@value" : "Sheep" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#SheepBody", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#SheepBody", "@type" : [ "skos:Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Sheep" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Sheep" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -2883,7 +2883,7 @@ "@value" : "Sheep's body" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#SodiumOrSaltFree", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#SodiumOrSaltFree", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://purl.org/dc/terms/description" : [ { "@language" : "en", @@ -2893,10 +2893,10 @@ "@value" : "\"Une allégation selon laquelle une denrée alimentaire ne contient pas de sodium ou de sel, ou toute autre allégation susceptible d'avoir le même sens pour le consommateur, ne peut être faite que si le produit ne contient pas plus de 0,005 g de sodium ou de l'équivalent en sel par 100 g.\" (source: Annex of Regulation (EC) No 1924/2006)" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NutritionalClaim" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#NutritionalClaim" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2906,7 +2906,7 @@ "@value" : "Sans sodium ou sans sel" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#SourceOfFibre", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#SourceOfFibre", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://purl.org/dc/terms/description" : [ { "@language" : "en", @@ -2916,10 +2916,10 @@ "@value" : "\"Une allégation selon laquelle une denrée alimentaire est une source de fibres, ou toute autre allégation susceptible d'avoir le même sens pour le consommateur, ne peut être faite que si le produit contient au moins 3 g de fibres par 100 g ou au moins 1,5 g de fibres par 100 kcal.\" (source: Annex of Regulation (EC) No 1924/2006)" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NutritionalClaim" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#NutritionalClaim" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2929,7 +2929,7 @@ "@value" : "Source de fibres" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#SourceOfOmega3FattyAcids", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#SourceOfOmega3FattyAcids", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://purl.org/dc/terms/description" : [ { "@language" : "en", @@ -2939,10 +2939,10 @@ "@value" : "\"Une allégation selon laquelle une denrée alimentaire est une source d’acide gras oméga-3, ou toute allégation susceptible d’avoir le même sens pour le consommateur, ne peut être faite que si le produit contient au moins 0,3 g d’acide alphalinolénique pour 100 g et 100 kcal, ou au moins 40 mg d’acide eicosapentaénoïque et d’acide docosahexénoïque combinés pour 100 g et 100 kcal.\" (source: Annex of Regulation (EC) No 1924/2006)" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NutritionalClaim" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#NutritionalClaim" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2952,7 +2952,7 @@ "@value" : "Source d'acide gras Oméga-3" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#SourceOfProtein", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#SourceOfProtein", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://purl.org/dc/terms/description" : [ { "@language" : "en", @@ -2962,10 +2962,10 @@ "@value" : "\"Une allégation selon laquelle une denrée alimentaire est une source de protéines, ou toute autre allégation susceptible d'avoir le même sens pour le consommateur, ne peut être faite que si 12 % au moins de la valeur énergétique de la denrée alimentaire sont produits par des protéines.\" (source: Annex of Regulation (EC) No 1924/2006)" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NutritionalClaim" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#NutritionalClaim" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2975,7 +2975,7 @@ "@value" : "Source de protéine" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#SourceOfVitaminsMinerals", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#SourceOfVitaminsMinerals", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://purl.org/dc/terms/description" : [ { "@language" : "en", @@ -2985,10 +2985,10 @@ "@value" : "\"Une allégation selon laquelle une denrée alimentaire est une source de vitamines et/ou de minéraux, ou toute autre allégation susceptible d'avoir le même sens pour le consommateur, ne peut être faite que si le produit contient au moins la quantité significative définie à l'annexe de la directive 90/496/CEE ou une quantité prévue au titre de dérogations accordées conformément à l'article 6 du règlement (CE) no 1925/2006 du Parlement européen et du Conseil du 20 décembre 2006 concernant l'adjonction de vitamines, de minéraux et de certaines autres substances aux denrées alimentaires.\" (source: Annex of Regulation (EC) No 1924/2006)" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NutritionalClaim" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#NutritionalClaim" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2998,16 +2998,16 @@ "@value" : "Source de vitamines et/ou de minéraux" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#SouthAmerica", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#SouthAmerica", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ { "@id" : "https://www.wikidata.org/wiki/Q18" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#TerritorialOrigin" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#TerritorialOrigin" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -3017,16 +3017,16 @@ "@value" : "Amérique du Sud" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Spain", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Spain", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ { "@id" : "https://www.wikidata.org/wiki/Q29" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Europe" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Europe" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -3036,13 +3036,13 @@ "@value" : "Espagne" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Stem", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Stem", "@type" : [ "skos:Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#PlantPartOrigin" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#PlantPartOrigin" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -3052,7 +3052,7 @@ "@value" : "Tige" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#SugarsFree", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#SugarsFree", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://purl.org/dc/terms/description" : [ { "@language" : "en", @@ -3062,10 +3062,10 @@ "@value" : "\"Une allégation selon laquelle une denrée alimentaire ne contient pas de sucres, ou toute autre allégation susceptible d'avoir le même sens pour le consommateur, ne peut être faite que si le produit ne contient pas plus de 0,5 g de sucres par 100 g ou par 100 ml.\" (source: Annex of Regulation (EC) No 1924/2006)" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NutritionalClaim" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#NutritionalClaim" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -3075,16 +3075,16 @@ "@value" : "Sugars-free" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Switzerland", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Switzerland", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ { "@id" : "https://www.wikidata.org/wiki/Q39" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Europe" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Europe" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -3094,13 +3094,13 @@ "@value" : "Suisse" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#TasteOfTheYear", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#TasteOfTheYear", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#MarketingLabel" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#MarketingLabel" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -3110,7 +3110,7 @@ "@value" : "Reconnu Saveur de l’année" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#TerritorialOrigin", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#TerritorialOrigin", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://purl.org/dc/terms/description" : [ { "@language" : "en", @@ -3120,24 +3120,24 @@ "@value" : "Origine géographique du produit concerné" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#UnknownGeoOrigin" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#UnknownGeoOrigin" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#MultiGeoOrigin" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#MultiGeoOrigin" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Europe" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Europe" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Africa" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Africa" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Asia" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Asia" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Oceania" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Oceania" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NorthAmerica" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#NorthAmerica" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#SouthAmerica" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#SouthAmerica" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -3147,16 +3147,16 @@ "@value" : "Origine géographique" } ], "http://www.w3.org/2004/02/skos/core#topConceptOf" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Tuber", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Tuber", "@type" : [ "skos:Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#PlantPartOrigin" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#PlantPartOrigin" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -3166,7 +3166,7 @@ "@value" : "Tubercule" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#UnitedKingdom", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#UnitedKingdom", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ { "@id" : "https://www.wikidata.org/wiki/Q145" @@ -3179,19 +3179,19 @@ "@value" : "UK" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Europe" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Europe" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#England" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#England" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Wales" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Wales" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Scotland" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Scotland" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NorthernIreland" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#NorthernIreland" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -3201,13 +3201,13 @@ "@value" : "Royaume Uni" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#UnknownGeoOrigin", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#UnknownGeoOrigin", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#TerritorialOrigin" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#TerritorialOrigin" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -3217,13 +3217,13 @@ "@value" : "Origine territoriale inconnue" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#UnknownLabel", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#UnknownLabel", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Certification" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Certification" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -3233,13 +3233,13 @@ "@value" : "Label inconnu" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#UnknownNatureOrigin", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#UnknownNatureOrigin", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NatureOrigin" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#NatureOrigin" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -3249,13 +3249,13 @@ "@value" : "Source d'origine inconnue" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#UnknownPartOrigin", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#UnknownPartOrigin", "@type" : [ "skos:Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#PartOrigin" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#PartOrigin" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -3265,13 +3265,13 @@ "@value" : "Unknown part origin" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Vegan", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Vegan", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#OtherClaim" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#OtherClaim" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -3281,13 +3281,13 @@ "@value" : "Vegan" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Vegetarian", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Vegetarian", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#OtherClaim" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#OtherClaim" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -3297,7 +3297,7 @@ "@value" : "Végétarien" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#VeryLowSodiumSalt", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#VeryLowSodiumSalt", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://purl.org/dc/terms/description" : [ { "@language" : "en", @@ -3307,10 +3307,10 @@ "@value" : "\"Une allégation selon laquelle une denrée alimentaire est très pauvre en sodium ou en sel, ou toute autre allégation susceptible d'avoir le même sens pour le consommateur, ne peut être faite que si le produit ne contient pas plus de 0,04 g de sodium ou de l'équivalent en sel par 100 g ou 100 ml. Il est interdit d'utiliser cette allégation pour les eaux minérales naturelles et les autres eaux.\" (source: Annex of Regulation (EC) No 1924/2006)" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NutritionalClaim" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#NutritionalClaim" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -3320,16 +3320,16 @@ "@value" : "Très pauvre en sodium/sel" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Wales", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Wales", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ { "@id" : "https://www.wikidata.org/wiki/Q25" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#UnitedKingdom" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#UnitedKingdom" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -3339,13 +3339,13 @@ "@value" : "Pays de Galles" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Water", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Water", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NatureOrigin" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#NatureOrigin" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -3355,13 +3355,13 @@ "@value" : "Eau" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#WholePlant", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#WholePlant", "@type" : [ "skos:Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#PlantPartOrigin" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#PlantPartOrigin" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -3371,5 +3371,5 @@ "@value" : "Whole plant" } ] } ], - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf" } ] \ No newline at end of file diff --git a/src/org/datafoodconsortium/connector/codegen/ruby/static/spec/support/measures.json b/src/org/datafoodconsortium/connector/codegen/ruby/static/spec/support/measures.json index 6a3ef77..4a19061 100644 --- a/src/org/datafoodconsortium/connector/codegen/ruby/static/spec/support/measures.json +++ b/src/org/datafoodconsortium/connector/codegen/ruby/static/spec/support/measures.json @@ -1,6 +1,6 @@ { "@context": { - "dfc-m": "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/measures.rdf#", + "dfc-m": "http://w3id.org/dfc/taxonomies/v2.0.0/measures.rdf#", "skos": "http://www.w3.org/2004/02/skos/core#", "rdf": "http://www.w3.org/2000/01/rdf-schema#" }, diff --git a/src/org/datafoodconsortium/connector/codegen/ruby/static/spec/support/productTypes.json b/src/org/datafoodconsortium/connector/codegen/ruby/static/spec/support/productTypes.json index e423ba3..51545f8 100644 --- a/src/org/datafoodconsortium/connector/codegen/ruby/static/spec/support/productTypes.json +++ b/src/org/datafoodconsortium/connector/codegen/ruby/static/spec/support/productTypes.json @@ -6,7 +6,7 @@ "@id" : "http://www.w3.org/2004/02/skos/core#ConceptScheme", "@type" : [ "http://www.w3.org/2002/07/owl#Class" ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf", "@type" : [ "http://www.w3.org/2002/07/owl#Ontology" ], "http://purl.org/dc/terms/description" : [ { "@language" : "fr", @@ -26,45 +26,45 @@ "@id" : "http://www.w3.org/2004/02/skos/core#ConceptScheme" } ], "http://www.w3.org/2004/02/skos/core#hasTopConcept" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#bakery" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#bakery" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#dairy-product" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#dairy-product" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#drink" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#drink" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#frozen" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#frozen" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#fruit" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#fruit" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#inedible" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#inedible" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#local-grocery-store" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#local-grocery-store" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#meat-product" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#meat-product" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#vegetable" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#vegetable" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#alcoholic-beverage", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#alcoholic-beverage", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#drink" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#drink" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#aperitif" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#aperitif" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#beer" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#beer" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#cider" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#cider" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#digestive" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#digestive" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#wine" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#wine" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -74,15 +74,15 @@ "@value" : "boisson alcoolisée" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#almond", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#almond", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#nut" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#nut" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -92,15 +92,15 @@ "@value" : "amande" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#aperitif", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#aperitif", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#alcoholic-beverage" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#alcoholic-beverage" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -110,15 +110,15 @@ "@value" : "apéritif" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#apples", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#apples", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#fruit" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#fruit" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -128,15 +128,15 @@ "@value" : "pomme" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#apricot", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#apricot", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#fruit" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#fruit" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -146,15 +146,15 @@ "@value" : "apricot" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#artichoke", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#artichoke", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#vegetable" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -164,15 +164,15 @@ "@value" : "artichoke" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#asparagus", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#asparagus", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#vegetable" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -182,17 +182,17 @@ "@value" : "asperges" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#bakery", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#bakery", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#bread" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#bread" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#viennoiserie-" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#viennoiserie-" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -202,18 +202,18 @@ "@value" : "boulangerie" } ], "http://www.w3.org/2004/02/skos/core#topConceptOf" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#basil", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#basil", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#aromatic" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#aromatic" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -223,15 +223,15 @@ "@value" : "basilic" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#bean", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#bean", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#vegetable" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -241,15 +241,15 @@ "@value" : "haricot" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#beans", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#beans", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#dried-vegetable" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#dried-vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -259,20 +259,20 @@ "@value" : "haricots" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#beef", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#beef", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#meat-product" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#meat-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#grilling-meat" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#grilling-meat" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#simmering-meat" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#simmering-meat" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -282,15 +282,15 @@ "@value" : "viande bovine" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#beer", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#beer", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#alcoholic-beverage" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#alcoholic-beverage" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -300,15 +300,15 @@ "@value" : "bière" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#beetroot", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#beetroot", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#vegetable" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -318,28 +318,28 @@ "@value" : "betterave rouge" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#berry", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#berry", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#fruit" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#fruit" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#blackberry" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#blackberry" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#blackcurrant" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#blackcurrant" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#blueberry" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#blueberry" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#currant" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#currant" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#gooseberry" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#gooseberry" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#raspberry" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#raspberry" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -349,15 +349,15 @@ "@value" : "petit fruit" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#biscuit", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#biscuit", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#sweet-groceries" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#sweet-groceries" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -367,15 +367,15 @@ "@value" : "biscuit" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#blackberry", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#blackberry", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#berry" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#berry" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -385,15 +385,15 @@ "@value" : "mûre" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#blackcurrant", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#blackcurrant", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#berry" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#berry" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -403,15 +403,15 @@ "@value" : "cassis" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#blueberry", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#blueberry", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#berry" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#berry" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -421,15 +421,15 @@ "@value" : "myrtille" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#bluefoot-mushroom", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#bluefoot-mushroom", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#mushroom" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#mushroom" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -439,15 +439,15 @@ "@value" : "bluefoot mushroom" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#bottled-fruit", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#bottled-fruit", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#processed-fruit" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#processed-fruit" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -457,15 +457,15 @@ "@value" : "fruit en bocal" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#bottled-vegetable", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#bottled-vegetable", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#processed-vegetable" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#processed-vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -475,15 +475,15 @@ "@value" : "légume en bocal" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#bread", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#bread", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#bakery" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#bakery" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -493,15 +493,15 @@ "@value" : "pain" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#broccoli-cabbage", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#broccoli-cabbage", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#cabbage" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#cabbage" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -511,15 +511,15 @@ "@value" : "chou brocoli" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#brussels-sprouts", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#brussels-sprouts", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#cabbage" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#cabbage" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -529,15 +529,15 @@ "@value" : "choux de bruxelles" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#butter", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#butter", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#cow-dairy-product" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#cow-dairy-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -547,15 +547,15 @@ "@value" : "butter" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#butternut", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#butternut", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#squash" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#squash" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -565,38 +565,38 @@ "@value" : "butternut" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#cabbage", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#cabbage", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#vegetable" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#broccoli-cabbage" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#broccoli-cabbage" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#brussels-sprouts" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#brussels-sprouts" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#cauliflower" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#cauliflower" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#chinese-cabbage" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#chinese-cabbage" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#kale" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#kale" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#kale-cabbage" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#kale-cabbage" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#kohlrabi" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#kohlrabi" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#red-cabbage" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#red-cabbage" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#romanesco" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#romanesco" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#savoy-cabbage" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#savoy-cabbage" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#smooth-cabbage" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#smooth-cabbage" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -606,15 +606,15 @@ "@value" : "chou" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#canned-fruit", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#canned-fruit", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#processed-fruit" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#processed-fruit" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -624,15 +624,15 @@ "@value" : "fruit en conserve" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#canned-vegetable", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#canned-vegetable", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#processed-vegetable" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#processed-vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -642,15 +642,15 @@ "@value" : "légume en conserve" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#carrot", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#carrot", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#vegetable" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -660,15 +660,15 @@ "@value" : "carrot" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#cauliflower", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#cauliflower", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#cabbage" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#cabbage" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -678,15 +678,15 @@ "@value" : "chou-fleur" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#celeriac", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#celeriac", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#vegetable" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -696,15 +696,15 @@ "@value" : "céleri-rave" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#celery-branch", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#celery-branch", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#vegetable" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -714,15 +714,15 @@ "@value" : "céleri branche" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#chanterelle-mushroom", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#chanterelle-mushroom", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#mushroom" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#mushroom" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -732,15 +732,15 @@ "@value" : "chanterelle mushroom" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#chard", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#chard", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#vegetable" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -750,15 +750,15 @@ "@value" : "chard" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#cherry", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#cherry", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#fruit" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#fruit" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -768,15 +768,15 @@ "@value" : "cherry" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#cherry-tomato", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#cherry-tomato", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#tomato" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#tomato" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -786,15 +786,15 @@ "@value" : "tomate cerise" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#chervil", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#chervil", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#aromatic" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#aromatic" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -804,15 +804,15 @@ "@value" : "chervil" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#chestnut", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#chestnut", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#nut" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#nut" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -822,15 +822,15 @@ "@value" : "marron" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#chicken", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#chicken", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#poultry" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#poultry" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -840,15 +840,15 @@ "@value" : "poulet" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#chicory", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#chicory", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#salad" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#salad" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -858,15 +858,15 @@ "@value" : "chicorée" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#chilli-pepper", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#chilli-pepper", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#aromatic" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#aromatic" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -876,15 +876,15 @@ "@value" : "piment" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#chinese-cabbage", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#chinese-cabbage", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#cabbage" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#cabbage" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -894,15 +894,15 @@ "@value" : "chou chinois" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#chive", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#chive", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#aromatic" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#aromatic" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -912,15 +912,15 @@ "@value" : "ciboulette" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#cider", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#cider", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#alcoholic-beverage" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#alcoholic-beverage" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -930,15 +930,15 @@ "@value" : "cidre" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#clementine", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#clementine", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#fruit" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#fruit" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -948,15 +948,15 @@ "@value" : "clémentine" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#cluster-tomato", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#cluster-tomato", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#tomato" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#tomato" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -966,15 +966,15 @@ "@value" : "tomate en grappe" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#confectionery", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#confectionery", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#sweet-groceries" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#sweet-groceries" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -984,15 +984,15 @@ "@value" : "confiserie" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#cooked-meat", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#cooked-meat", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#pork" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#pork" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1002,15 +1002,15 @@ "@value" : "viande cuite" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#coriander", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#coriander", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#aromatic" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#aromatic" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1020,15 +1020,15 @@ "@value" : "coriandre" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#corn-salad", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#corn-salad", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#salad" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#salad" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1038,15 +1038,15 @@ "@value" : "mâche" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#cosmetic", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#cosmetic", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#inedible" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#inedible" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1056,15 +1056,15 @@ "@value" : "cosmétique" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#coulemelle-mushroom", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#coulemelle-mushroom", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#mushroom" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#mushroom" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -1074,15 +1074,15 @@ "@value" : "parasol mushroom" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#courgette", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#courgette", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#vegetable" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1092,40 +1092,40 @@ "@value" : "courgette" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#cow-dairy-product", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#cow-dairy-product", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#dairy-product" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#dairy-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#butter" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#butter" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#cream-cheese" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#cream-cheese" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#dairy-dessert" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#dairy-dessert" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#flavored-yogurt" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#flavored-yogurt" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#fresh-cheese" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#fresh-cheese" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#fresh-cream" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#fresh-cream" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#mature-cheese" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#mature-cheese" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#milk" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#milk" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#natural-yogurt" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#natural-yogurt" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#sweet-yogurt" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#sweet-yogurt" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#yogurt-on-a-bed-of-fruit" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#yogurt-on-a-bed-of-fruit" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#yogurt-with-fruits" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#yogurt-with-fruits" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1135,15 +1135,15 @@ "@value" : "produit laitier de vache" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#cream-cheese", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#cream-cheese", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#cow-dairy-product" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#cow-dairy-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1153,15 +1153,15 @@ "@value" : "fromage blanc" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#crepe-and-galette", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#crepe-and-galette", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#savory-groceries" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#savory-groceries" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1171,15 +1171,15 @@ "@value" : "crêpe et galette" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#cress", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#cress", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#salad" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#salad" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1189,15 +1189,15 @@ "@value" : "cresson" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#cucumber", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#cucumber", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#vegetable" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -1207,15 +1207,15 @@ "@value" : "cucumber" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#currant", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#currant", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#berry" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#berry" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1225,15 +1225,15 @@ "@value" : "groseille" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#dairy-dessert", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#dairy-dessert", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#cow-dairy-product" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#cow-dairy-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1243,21 +1243,21 @@ "@value" : "dessert lacté" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#dairy-product", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#dairy-product", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#cow-dairy-product" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#cow-dairy-product" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#goat-dairy-product" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#goat-dairy-product" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#other-dairy-product" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#other-dairy-product" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#sheep-dairy-product" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#sheep-dairy-product" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1267,18 +1267,18 @@ "@value" : "produit laitier" } ], "http://www.w3.org/2004/02/skos/core#topConceptOf" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#dandelion", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#dandelion", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#salad" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#salad" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1288,15 +1288,15 @@ "@value" : "pissenlit" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#deaths-trumpet", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#deaths-trumpet", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#mushroom" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#mushroom" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1306,15 +1306,15 @@ "@value" : "trompette de la mort" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#delicatessen", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#delicatessen", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#pork" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#pork" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -1324,15 +1324,15 @@ "@value" : "delicatessen" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#digestive", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#digestive", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#alcoholic-beverage" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#alcoholic-beverage" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -1342,15 +1342,15 @@ "@value" : "digestive" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#dill", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#dill", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#aromatic" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#aromatic" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -1360,15 +1360,15 @@ "@value" : "dill" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#dried-fruit", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#dried-fruit", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#processed-fruit" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#processed-fruit" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1378,24 +1378,24 @@ "@value" : "fruit sec" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#dried-vegetable", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#dried-vegetable", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#vegetable" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#beans" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#beans" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#lentils" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#lentils" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#peas" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#peas" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#quinoa" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#quinoa" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1405,26 +1405,26 @@ "@value" : "légume sec" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#dried_goods", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#dried_goods", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#local-grocery-store" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#local-grocery-store" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#flour" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#flour" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#dried_herb" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#dried_herb" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#flake" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#flake" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#grain" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#grain" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#seed" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#seed" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1434,15 +1434,15 @@ "@value" : "produits sec" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#dried_herb", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#dried_herb", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#dried_goods" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#dried_goods" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1452,17 +1452,17 @@ "@value" : "aromate sec" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#drink", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#drink", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#alcoholic-beverage" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#alcoholic-beverage" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#soft-drink" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#soft-drink" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -1472,18 +1472,18 @@ "@value" : "drink" } ], "http://www.w3.org/2004/02/skos/core#topConceptOf" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#duck", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#duck", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#poultry" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#poultry" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -1493,15 +1493,15 @@ "@value" : "duck" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#egg", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#egg", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#meat-product" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#meat-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1511,15 +1511,15 @@ "@value" : "œuf" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#eggplant", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#eggplant", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#vegetable" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -1529,15 +1529,15 @@ "@value" : "eggplant" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#endive", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#endive", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#salad" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#salad" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1547,15 +1547,15 @@ "@value" : "endive" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#fennel", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#fennel", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#vegetable" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1565,15 +1565,15 @@ "@value" : "fenouil" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#festive-poultry", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#festive-poultry", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#poultry" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#poultry" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1583,15 +1583,15 @@ "@value" : "volaille festive" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#fifth-range-vegetable", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#fifth-range-vegetable", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#vegetable" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1601,15 +1601,15 @@ "@value" : "légume de cinquième gamme" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#fig", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#fig", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#fruit" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#fruit" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1619,15 +1619,15 @@ "@value" : "figue" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#fish", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#fish", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#fishery-product" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#fishery-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1637,22 +1637,22 @@ "@value" : "poisson" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#fishery-product", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#fishery-product", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#meat-product" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#meat-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#fish" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#fish" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#seashell" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#seashell" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#shellfish" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#shellfish" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1662,15 +1662,15 @@ "@value" : "produit de la pêche" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#flake", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#flake", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#dried_goods" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#dried_goods" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1680,15 +1680,15 @@ "@value" : "flocon" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#flavored-yogurt", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#flavored-yogurt", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#cow-dairy-product" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#cow-dairy-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1698,15 +1698,15 @@ "@value" : "yaourt aromatisé" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#flour", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#flour", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#dried_goods" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#dried_goods" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -1716,15 +1716,15 @@ "@value" : "flour" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#flower", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#flower", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#inedible" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#inedible" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -1734,15 +1734,15 @@ "@value" : "flower" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#fourth-range-vegetable", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#fourth-range-vegetable", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#vegetable" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1752,15 +1752,15 @@ "@value" : "légume de quatrième gamme" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#fresh-cheese", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#fresh-cheese", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#cow-dairy-product" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#cow-dairy-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1770,15 +1770,15 @@ "@value" : "fromage frais" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#fresh-cream", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#fresh-cream", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#cow-dairy-product" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#cow-dairy-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -1788,15 +1788,15 @@ "@value" : "fresh cream" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#fresh-meat", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#fresh-meat", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#pork" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#pork" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1806,21 +1806,21 @@ "@value" : "viande fraîche" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#frozen", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#frozen", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#frozen-fruit" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#frozen-fruit" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#frozen-meal" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#frozen-meal" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#frozen-meat" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#frozen-meat" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#frozen-vegetable" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#frozen-vegetable" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1830,18 +1830,18 @@ "@value" : "surgelé" } ], "http://www.w3.org/2004/02/skos/core#topConceptOf" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#frozen-fruit", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#frozen-fruit", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#frozen" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#frozen" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1851,15 +1851,15 @@ "@value" : "fruit surgelé" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#frozen-meal", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#frozen-meal", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#frozen" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#frozen" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1869,15 +1869,15 @@ "@value" : "plat surgelé" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#frozen-meat", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#frozen-meat", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#frozen" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#frozen" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1887,15 +1887,15 @@ "@value" : "viande surgelée" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#frozen-vegetable", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#frozen-vegetable", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#frozen" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#frozen" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1905,53 +1905,53 @@ "@value" : "légume surgelé" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#fruit", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#fruit", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#apples" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#apples" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#apricot" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#apricot" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#berry" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#berry" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#cherry" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#cherry" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#clementine" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#clementine" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#fig" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#fig" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#grape" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#grape" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#kiwi" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#kiwi" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#lemon" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#lemon" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#mandarin" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#mandarin" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#nectarine" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#nectarine" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#non-local-fruit" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#non-local-fruit" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#nut" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#nut" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#orange" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#orange" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#peach" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#peach" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#pear" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#pear" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#plum" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#plum" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#prune" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#prune" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#quince" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#quince" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#strawberry" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#strawberry" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1961,18 +1961,18 @@ "@value" : "fruits" } ], "http://www.w3.org/2004/02/skos/core#topConceptOf" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#fruit-in-compote", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#fruit-in-compote", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#processed-fruit" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#processed-fruit" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -1982,15 +1982,15 @@ "@value" : "fruit in compote" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#fruit-juice", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#fruit-juice", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#soft-drink" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#soft-drink" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2000,15 +2000,15 @@ "@value" : "jus de fruits" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#garlic", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#garlic", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#vegetable" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -2018,15 +2018,15 @@ "@value" : "garlic" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#girolle-mushroom", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#girolle-mushroom", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#mushroom" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#mushroom" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -2036,15 +2036,15 @@ "@value" : "girolle mushroom" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#goat-dairy-dessert", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#goat-dairy-dessert", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#goat-dairy-product" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#goat-dairy-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -2054,34 +2054,34 @@ "@value" : "goat dairy dessert" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#goat-dairy-product", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#goat-dairy-product", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#dairy-product" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#dairy-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#goat-dairy-dessert" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#goat-dairy-dessert" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#goat-flavored-yogurt" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#goat-flavored-yogurt" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#goat-fresh-cheese" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#goat-fresh-cheese" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#goat-mature-cheese" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#goat-mature-cheese" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#goat-milk" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#goat-milk" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#goat-natural-yogurt" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#goat-natural-yogurt" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#goat-sweet-yogurt" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#goat-sweet-yogurt" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#goat-yogurt-on-a-bed-of-fruit" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#goat-yogurt-on-a-bed-of-fruit" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#goat-yogurt-with-fruits" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#goat-yogurt-with-fruits" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2091,15 +2091,15 @@ "@value" : "produit laitier de chèvre" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#goat-flavored-yogurt", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#goat-flavored-yogurt", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#goat-dairy-product" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#goat-dairy-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2109,15 +2109,15 @@ "@value" : "yaourt de chèvre aromatisé" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#goat-fresh-cheese", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#goat-fresh-cheese", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#goat-dairy-product" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#goat-dairy-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -2127,15 +2127,15 @@ "@value" : "goat fresh cheese" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#goat-mature-cheese", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#goat-mature-cheese", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#goat-dairy-product" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#goat-dairy-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -2145,15 +2145,15 @@ "@value" : "goat mature cheese" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#goat-milk", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#goat-milk", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#goat-dairy-product" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#goat-dairy-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2163,15 +2163,15 @@ "@value" : "lait de chèvre" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#goat-natural-yogurt", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#goat-natural-yogurt", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#goat-dairy-product" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#goat-dairy-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2181,15 +2181,15 @@ "@value" : "yaourt nature de chèvre" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#goat-sweet-yogurt", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#goat-sweet-yogurt", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#goat-dairy-product" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#goat-dairy-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2199,15 +2199,15 @@ "@value" : "yaourt sucré de chèvre" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#goat-yogurt-on-a-bed-of-fruit", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#goat-yogurt-on-a-bed-of-fruit", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#goat-dairy-product" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#goat-dairy-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2217,15 +2217,15 @@ "@value" : "yaourt de chèvre sur lit de fruits" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#goat-yogurt-with-fruits", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#goat-yogurt-with-fruits", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#goat-dairy-product" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#goat-dairy-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2235,15 +2235,15 @@ "@value" : "yaourt de chèvre aux fruits" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#goose", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#goose", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#poultry" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#poultry" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2253,15 +2253,15 @@ "@value" : "oie" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#gooseberry", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#gooseberry", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#berry" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#berry" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2271,17 +2271,17 @@ "@value" : "groseille à maquereau" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#grain", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#grain", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#savory-groceries" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#savory-groceries" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#dried_goods" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#dried_goods" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -2291,15 +2291,15 @@ "@value" : "grain" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#grape", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#grape", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#fruit" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#fruit" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2309,15 +2309,15 @@ "@value" : "raisin" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#green-garlic", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#green-garlic", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#vegetable" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -2327,15 +2327,15 @@ "@value" : "green garlic" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#grilling-meat", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#grilling-meat", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#beef" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#beef" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2345,15 +2345,15 @@ "@value" : "viande à griller" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#guinea-fowl", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#guinea-fowl", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#poultry" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#poultry" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2363,15 +2363,15 @@ "@value" : "pintade" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#hazelnut", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#hazelnut", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#nut" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#nut" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2381,42 +2381,42 @@ "@value" : "noisette" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#herb", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#herb", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#vegetable" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#basil" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#basil" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#chervil" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#chervil" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#chilli-pepper" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#chilli-pepper" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#chive" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#chive" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#coriander" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#coriander" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#dill" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#dill" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#laurel" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#laurel" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#mint" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#mint" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#parsley" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#parsley" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#rosemary" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#rosemary" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#sage" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#sage" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#tarragon" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#tarragon" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#thyme" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#thyme" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -2426,15 +2426,15 @@ "@value" : "herb" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#hierloom-squash", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#hierloom-squash", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#squash" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#squash" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2444,15 +2444,15 @@ "@value" : "variété ancienne de courge" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#hierloom-tomato", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#hierloom-tomato", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#tomato" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#tomato" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2462,15 +2462,15 @@ "@value" : "tomate ancienne" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#honey", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#honey", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#sweet-groceries" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#sweet-groceries" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2480,19 +2480,19 @@ "@value" : "miel" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#inedible", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#inedible", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#cosmetic" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#cosmetic" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#flower" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#flower" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#plant" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#plant" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2502,18 +2502,18 @@ "@value" : "non alimentaire" } ], "http://www.w3.org/2004/02/skos/core#topConceptOf" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#jam", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#jam", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#sweet-groceries" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#sweet-groceries" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -2523,7 +2523,7 @@ "@value" : "jam" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#jerusalem-artichoke", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#jerusalem-artichoke", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], @@ -2532,10 +2532,10 @@ "@value" : "sunchoke" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#vegetable" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2545,15 +2545,15 @@ "@value" : "topinambour" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#kale", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#kale", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#cabbage" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#cabbage" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -2563,15 +2563,15 @@ "@value" : "curly kale" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#kale-cabbage", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#kale-cabbage", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#cabbage" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#cabbage" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -2581,15 +2581,15 @@ "@value" : "kale" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#kiwi", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#kiwi", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#fruit" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#fruit" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2599,15 +2599,15 @@ "@value" : "kiwi" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#kohlrabi", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#kohlrabi", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#cabbage" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#cabbage" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -2617,15 +2617,15 @@ "@value" : "kohlrabi" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#lamb", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#lamb", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#meat-product" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#meat-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -2635,15 +2635,15 @@ "@value" : "lamb" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#laurel", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#laurel", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#aromatic" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#aromatic" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2653,15 +2653,15 @@ "@value" : "laurier" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#leek", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#leek", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#vegetable" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2671,15 +2671,15 @@ "@value" : "poireau" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#lemon", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#lemon", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#fruit" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#fruit" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -2689,15 +2689,15 @@ "@value" : "lemon" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#lemonade", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#lemonade", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#soft-drink" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#soft-drink" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2707,15 +2707,15 @@ "@value" : "limonade" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#lentils", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#lentils", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#dried-vegetable" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#dried-vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -2725,15 +2725,15 @@ "@value" : "lentils" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#lettuce", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#lettuce", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#salad" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#salad" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -2743,23 +2743,23 @@ "@value" : "lettuce" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#local-grocery-store", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#local-grocery-store", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#processed-fruit" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#processed-fruit" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#processed-vegetable" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#processed-vegetable" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#ready-meal" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#ready-meal" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#savory-groceries" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#savory-groceries" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#sweet-groceries" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#sweet-groceries" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2769,18 +2769,18 @@ "@value" : "épicerie locale" } ], "http://www.w3.org/2004/02/skos/core#topConceptOf" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#mandarin", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#mandarin", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#fruit" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#fruit" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2790,15 +2790,15 @@ "@value" : "mandarine" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#mature-cheese", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#mature-cheese", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#cow-dairy-product" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#cow-dairy-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -2808,31 +2808,31 @@ "@value" : "mature cheese" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#meat-product", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#meat-product", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#beef" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#beef" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#egg" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#egg" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#fishery-product" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#fishery-product" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#lamb" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#lamb" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#pork" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#pork" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#poultry" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#poultry" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#rabbit" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#rabbit" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#snails" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#snails" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#veal" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#veal" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2842,18 +2842,18 @@ "@value" : "produit carné" } ], "http://www.w3.org/2004/02/skos/core#topConceptOf" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#medlar", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#medlar", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#fruit" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#fruit" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2863,15 +2863,15 @@ "@value" : "nèfle" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#melon", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#melon", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#vegetable" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2881,15 +2881,15 @@ "@value" : "melon" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#mesclun", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#mesclun", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#salad" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#salad" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2899,15 +2899,15 @@ "@value" : "mesclun" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#milk", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#milk", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#cow-dairy-product" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#cow-dairy-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -2917,15 +2917,15 @@ "@value" : "milk" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#milky-mushroom", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#milky-mushroom", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#mushroom" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#mushroom" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -2935,15 +2935,15 @@ "@value" : "milky mushroom" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#mint", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#mint", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#aromatic" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#aromatic" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -2953,15 +2953,15 @@ "@value" : "mint" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#morel", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#morel", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#mushroom" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#mushroom" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2971,15 +2971,15 @@ "@value" : "morille" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#mousseron", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#mousseron", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#mushroom" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#mushroom" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2989,42 +2989,42 @@ "@value" : "mousseron" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#mushroom", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#mushroom", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#vegetable" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#bluefoot-mushroom" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#bluefoot-mushroom" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#chanterelle-mushroom" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#chanterelle-mushroom" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#coulemelle-mushroom" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#coulemelle-mushroom" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#deaths-trumpet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#deaths-trumpet" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#girolle-mushroom" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#girolle-mushroom" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#milky-mushroom" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#milky-mushroom" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#morel" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#morel" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#mousseron" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#mousseron" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#oyster-mushroom" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#oyster-mushroom" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#paris-mushroom" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#paris-mushroom" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#porcini" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#porcini" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#sheepfoot-mushroom" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#sheepfoot-mushroom" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#truffle" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#truffle" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -3034,15 +3034,15 @@ "@value" : "mushroom" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#natural-yogurt", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#natural-yogurt", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#cow-dairy-product" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#cow-dairy-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -3052,15 +3052,15 @@ "@value" : "yaourt nature" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#nectarine", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#nectarine", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#fruit" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#fruit" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -3070,15 +3070,15 @@ "@value" : "nectarine" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#non-local-fruit", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#non-local-fruit", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#fruit" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#fruit" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -3088,15 +3088,15 @@ "@value" : "non local fruit" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#non-local-vegetable", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#non-local-vegetable", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#vegetable" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -3106,26 +3106,26 @@ "@value" : "non local vegetable" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#nut", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#nut", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#fruit" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#fruit" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#almond" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#almond" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#chestnut" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#chestnut" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#hazelnut" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#hazelnut" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#medlar" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#medlar" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#walnut" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#walnut" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -3135,15 +3135,15 @@ "@value" : "nut" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#oil", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#oil", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#savory-groceries" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#savory-groceries" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -3153,15 +3153,15 @@ "@value" : "oil" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#onion", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#onion", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#vegetable" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -3171,15 +3171,15 @@ "@value" : "onion" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#orange", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#orange", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#fruit" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#fruit" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -3189,15 +3189,15 @@ "@value" : "orange" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#other-cheese", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#other-cheese", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#other-dairy-product" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#other-dairy-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -3207,20 +3207,20 @@ "@value" : "other cheese" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#other-dairy-product", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#other-dairy-product", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#dairy-product" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#dairy-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#other-cheese" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#other-cheese" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#other-milk" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#other-milk" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -3230,15 +3230,15 @@ "@value" : "other dairy product" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#other-milk", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#other-milk", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#other-dairy-product" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#other-dairy-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -3248,15 +3248,15 @@ "@value" : "other milk" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#oyster-mushroom", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#oyster-mushroom", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#mushroom" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#mushroom" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -3266,15 +3266,15 @@ "@value" : "pleurote" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#paris-mushroom", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#paris-mushroom", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#mushroom" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#mushroom" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -3284,15 +3284,15 @@ "@value" : "champignon de Paris" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#parsley", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#parsley", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#aromatic" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#aromatic" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -3302,15 +3302,15 @@ "@value" : "persil" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#parsnip", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#parsnip", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#vegetable" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -3320,15 +3320,15 @@ "@value" : "parsnip" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#pasta", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#pasta", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#savory-groceries" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#savory-groceries" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -3338,15 +3338,15 @@ "@value" : "pâtes" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#pastry", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#pastry", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#sweet-groceries" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#sweet-groceries" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -3356,15 +3356,15 @@ "@value" : "pâtisserie" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#pattypan-squash", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#pattypan-squash", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#squash" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#squash" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -3374,15 +3374,15 @@ "@value" : "pâtisson" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#peach", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#peach", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#fruit" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#fruit" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -3392,15 +3392,15 @@ "@value" : "pêche" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#pear", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#pear", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#fruit" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#fruit" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -3410,15 +3410,15 @@ "@value" : "poire" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#peas", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#peas", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#dried-vegetable" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#dried-vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -3428,15 +3428,15 @@ "@value" : "pois" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#pepper", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#pepper", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#vegetable" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -3446,15 +3446,15 @@ "@value" : "poivron" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#pie-pastry", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#pie-pastry", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#savory-groceries" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#savory-groceries" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -3464,15 +3464,15 @@ "@value" : "pâte à tarte" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#pigeon", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#pigeon", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#poultry" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#poultry" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -3482,15 +3482,15 @@ "@value" : "pigeon" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#plant", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#plant", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#inedible" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#inedible" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -3500,15 +3500,15 @@ "@value" : "plante" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#plum", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#plum", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#fruit" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#fruit" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -3518,15 +3518,15 @@ "@value" : "prune" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#porcini", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#porcini", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#mushroom" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#mushroom" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -3536,24 +3536,24 @@ "@value" : "porcini" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#pork", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#pork", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#meat-product" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#meat-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#cooked-meat" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#cooked-meat" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#delicatessen" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#delicatessen" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#fresh-meat" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#fresh-meat" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#salting" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#salting" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -3563,15 +3563,15 @@ "@value" : "pork" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#potato", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#potato", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#vegetable" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -3581,32 +3581,32 @@ "@value" : "potato" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#poultry", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#poultry", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#meat-product" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#meat-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#chicken" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#chicken" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#duck" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#duck" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#festive-poultry" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#festive-poultry" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#goose" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#goose" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#guinea-fowl" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#guinea-fowl" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#pigeon" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#pigeon" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#quail" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#quail" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#turkey" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#turkey" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -3616,24 +3616,24 @@ "@value" : "volaille" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#processed-fruit", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#processed-fruit", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#local-grocery-store" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#local-grocery-store" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#bottled-fruit" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#bottled-fruit" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#canned-fruit" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#canned-fruit" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#dried-fruit" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#dried-fruit" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#fruit-in-compote" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#fruit-in-compote" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -3643,22 +3643,22 @@ "@value" : "processed fruit" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#processed-vegetable", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#processed-vegetable", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#local-grocery-store" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#local-grocery-store" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#bottled-vegetable" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#bottled-vegetable" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#canned-vegetable" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#canned-vegetable" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#soup" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#soup" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -3668,15 +3668,15 @@ "@value" : "processed vegetable" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#prune", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#prune", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#fruit" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#fruit" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -3686,15 +3686,15 @@ "@value" : "pruneau" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#pumpkin", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#pumpkin", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#squash" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#squash" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -3704,15 +3704,15 @@ "@value" : "pumpkin" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#quail", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#quail", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#poultry" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#poultry" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -3722,15 +3722,15 @@ "@value" : "quail" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#quince", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#quince", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#fruit" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#fruit" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -3740,15 +3740,15 @@ "@value" : "quince" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#quinoa", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#quinoa", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#dried-vegetable" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#dried-vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -3758,15 +3758,15 @@ "@value" : "quinoa" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#rabbit", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#rabbit", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#meat-product" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#meat-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -3776,15 +3776,15 @@ "@value" : "rabbit" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#radish", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#radish", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#vegetable" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -3794,15 +3794,15 @@ "@value" : "radish" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#raspberry", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#raspberry", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#berry" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#berry" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -3812,15 +3812,15 @@ "@value" : "raspberry" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#ready-meal", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#ready-meal", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#local-grocery-store" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#local-grocery-store" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -3830,15 +3830,15 @@ "@value" : "ready meal" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#red-cabbage", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#red-cabbage", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#cabbage" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#cabbage" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -3848,15 +3848,15 @@ "@value" : "red cabbage" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#rhubarb", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#rhubarb", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#vegetable" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -3866,15 +3866,15 @@ "@value" : "rhubarbe" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#rice", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#rice", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#savory-groceries" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#savory-groceries" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -3884,15 +3884,15 @@ "@value" : "riz" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#rocket", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#rocket", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#salad" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#salad" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -3902,15 +3902,15 @@ "@value" : "roquette" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#romanesco", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#romanesco", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#cabbage" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#cabbage" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -3920,15 +3920,15 @@ "@value" : "romanesco cauliflower" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#rosemary", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#rosemary", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#aromatic" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#aromatic" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -3938,15 +3938,15 @@ "@value" : "rosemary" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#round-tomato", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#round-tomato", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#tomato" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#tomato" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -3956,7 +3956,7 @@ "@value" : "tomate ronde" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#rutabaga", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#rutabaga", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], @@ -3965,10 +3965,10 @@ "@value" : "swede" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#vegetable" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -3978,15 +3978,15 @@ "@value" : "rutabaga" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#sage", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#sage", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#aromatic" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#aromatic" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -3996,36 +3996,36 @@ "@value" : "sauge" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#salad", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#salad", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#vegetable" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#chicory" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#chicory" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#chewed-up" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#chewed-up" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#cress" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#cress" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#dandelion" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#dandelion" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#endive" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#endive" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#lettuce" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#lettuce" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#mesclun" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#mesclun" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#rocket" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#rocket" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#salad-mix" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#salad-mix" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#spinach" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#spinach" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -4035,15 +4035,15 @@ "@value" : "salade" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#salad-mix", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#salad-mix", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#salad" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#salad" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -4053,15 +4053,15 @@ "@value" : "salad mix" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#salsify", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#salsify", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#vegetable" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -4071,15 +4071,15 @@ "@value" : "salsify" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#salt", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#salt", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#savory-groceries" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#savory-groceries" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -4089,15 +4089,15 @@ "@value" : "sel" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#salting", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#salting", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#pork" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#pork" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -4107,30 +4107,30 @@ "@value" : "salting" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#savory-groceries", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#savory-groceries", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#local-grocery-store" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#local-grocery-store" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#crepe-and-galette" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#crepe-and-galette" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#oil" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#oil" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#pasta" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#pasta" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#pie-pastry" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#pie-pastry" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#rice" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#rice" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#salt" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#salt" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#semolina" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#semolina" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -4140,15 +4140,15 @@ "@value" : "épicerie salée" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#savoy-cabbage", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#savoy-cabbage", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#cabbage" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#cabbage" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -4158,15 +4158,15 @@ "@value" : "savoy cabbage" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#seashell", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#seashell", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#fishery-product" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#fishery-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -4176,15 +4176,15 @@ "@value" : "seashell" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#seed", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#seed", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#dried_goods" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#dried_goods" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -4194,7 +4194,7 @@ "@value" : "graine" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#semolina", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#semolina", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], @@ -4206,10 +4206,10 @@ "@value" : "grist" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#savory-groceries" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#savory-groceries" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -4219,15 +4219,15 @@ "@value" : "semoule" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#shallot", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#shallot", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#vegetable" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -4237,15 +4237,15 @@ "@value" : "échalote" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#sheep-dairy-dessert", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#sheep-dairy-dessert", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#sheep-dairy-product" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#sheep-dairy-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -4255,34 +4255,34 @@ "@value" : "sheep dairy dessert" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#sheep-dairy-product", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#sheep-dairy-product", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#dairy-product" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#dairy-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#sheep-dairy-dessert" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#sheep-dairy-dessert" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#sheep-flavored-yogurt" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#sheep-flavored-yogurt" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#sheep-fresh-cheese" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#sheep-fresh-cheese" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#sheep-mature-cheese" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#sheep-mature-cheese" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#sheep-milk" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#sheep-milk" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#sheep-natural-yogurt" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#sheep-natural-yogurt" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#sheep-sweet-yogurt" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#sheep-sweet-yogurt" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#sheep-yogurt-on-a-bed-of-fruit" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#sheep-yogurt-on-a-bed-of-fruit" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#sheep-yogurt-with-fruits" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#sheep-yogurt-with-fruits" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -4292,15 +4292,15 @@ "@value" : "sheep dairy product" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#sheep-flavored-yogurt", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#sheep-flavored-yogurt", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#sheep-dairy-product" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#sheep-dairy-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -4310,15 +4310,15 @@ "@value" : "yaourt de brebis aromatisé" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#sheep-fresh-cheese", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#sheep-fresh-cheese", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#sheep-dairy-product" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#sheep-dairy-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -4328,15 +4328,15 @@ "@value" : "sheep fresh cheese" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#sheep-mature-cheese", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#sheep-mature-cheese", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#sheep-dairy-product" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#sheep-dairy-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -4346,15 +4346,15 @@ "@value" : "sheep mature cheese" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#sheep-milk", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#sheep-milk", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#sheep-dairy-product" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#sheep-dairy-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -4364,15 +4364,15 @@ "@value" : "sheep milk" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#sheep-natural-yogurt", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#sheep-natural-yogurt", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#sheep-dairy-product" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#sheep-dairy-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -4382,15 +4382,15 @@ "@value" : "yaourt de brebis nature" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#sheep-sweet-yogurt", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#sheep-sweet-yogurt", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#sheep-dairy-product" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#sheep-dairy-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -4400,15 +4400,15 @@ "@value" : "yaourt sucré de brebis" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#sheep-yogurt-on-a-bed-of-fruit", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#sheep-yogurt-on-a-bed-of-fruit", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#sheep-dairy-product" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#sheep-dairy-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -4418,15 +4418,15 @@ "@value" : "yaourt de brebis sur lit de fruits" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#sheep-yogurt-with-fruits", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#sheep-yogurt-with-fruits", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#sheep-dairy-product" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#sheep-dairy-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -4436,15 +4436,15 @@ "@value" : "yaourt de brebis aux fruits" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#sheepfoot-mushroom", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#sheepfoot-mushroom", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#mushroom" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#mushroom" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -4454,15 +4454,15 @@ "@value" : "sheepfoot mushroom" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#shellfish", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#shellfish", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#fishery-product" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#fishery-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -4472,15 +4472,15 @@ "@value" : "shellfish" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#simmering-meat", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#simmering-meat", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#beef" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#beef" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -4490,15 +4490,15 @@ "@value" : "viande à mijoter" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#smooth-cabbage", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#smooth-cabbage", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#cabbage" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#cabbage" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -4508,15 +4508,15 @@ "@value" : "smooth cabbage" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#smoothie", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#smoothie", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#soft-drink" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#soft-drink" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -4526,15 +4526,15 @@ "@value" : "smoothie" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#snails", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#snails", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#meat-product" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#meat-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -4544,22 +4544,22 @@ "@value" : "snails" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#soft-drink", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#soft-drink", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#drink" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#drink" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#fruit-juice" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#fruit-juice" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#lemonade" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#lemonade" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#smoothie" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#smoothie" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -4569,15 +4569,15 @@ "@value" : "soft drink" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#soup", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#soup", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#processed-vegetable" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#processed-vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -4587,15 +4587,15 @@ "@value" : "soupe" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#spinach", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#spinach", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#salad" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#salad" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -4605,26 +4605,26 @@ "@value" : "épinards" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#squash", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#squash", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#vegetable" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#butternut" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#butternut" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#hierloom-squash" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#hierloom-squash" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#pattypan-squash" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#pattypan-squash" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#pumpkin" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#pumpkin" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#uchiki-kuri-squash" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#uchiki-kuri-squash" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -4634,15 +4634,15 @@ "@value" : "squash" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#strawberry", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#strawberry", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#fruit" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#fruit" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -4652,26 +4652,26 @@ "@value" : "strawberry" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#sweet-groceries", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#sweet-groceries", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#local-grocery-store" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#local-grocery-store" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#biscuit" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#biscuit" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#confectionery" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#confectionery" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#honey" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#honey" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#jam" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#jam" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#pastry" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#pastry" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -4681,15 +4681,15 @@ "@value" : "épicerie sucrée" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#sweet-yogurt", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#sweet-yogurt", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#cow-dairy-product" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#cow-dairy-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -4699,15 +4699,15 @@ "@value" : "yaourt sucré" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#tarragon", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#tarragon", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#aromatic" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#aromatic" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -4717,15 +4717,15 @@ "@value" : "tarragon" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#thyme", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#thyme", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#aromatic" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#aromatic" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -4735,24 +4735,24 @@ "@value" : "thyme" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#tomato", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#tomato", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#vegetable" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#cherry-tomato" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#cherry-tomato" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#cluster-tomato" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#cluster-tomato" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#old-variety-tomato" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#old-variety-tomato" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#round-tomato" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#round-tomato" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -4762,15 +4762,15 @@ "@value" : "tomato" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#truffle", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#truffle", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#mushroom" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#mushroom" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -4780,15 +4780,15 @@ "@value" : "truffle" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#turkey", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#turkey", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#poultry" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#poultry" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -4798,15 +4798,15 @@ "@value" : "turkey" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#turnip", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#turnip", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#vegetable" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -4816,15 +4816,15 @@ "@value" : "turnip" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#uchiki-kuri-squash", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#uchiki-kuri-squash", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#squash" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#squash" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -4834,15 +4834,15 @@ "@value" : "uchiki kuri squash" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#veal", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#veal", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#meat-product" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#meat-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -4852,89 +4852,89 @@ "@value" : "veau" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#vegetable", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#vegetable", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#artichoke" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#artichoke" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#asparagus" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#asparagus" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#bean" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#bean" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#beetroot" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#beetroot" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#cabbage" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#cabbage" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#carrot" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#carrot" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#celeriac" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#celeriac" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#celery-branch" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#celery-branch" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#chard" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#chard" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#courgette" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#courgette" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#cucumber" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#cucumber" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#dried-vegetable" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#dried-vegetable" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#eggplant" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#eggplant" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#fennel" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#fennel" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#fifth-range-vegetable" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#fifth-range-vegetable" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#fourth-range-vegetable" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#fourth-range-vegetable" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#garlic" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#garlic" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#green-garlic" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#green-garlic" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#herb" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#herb" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#jerusalem-artichoke" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#jerusalem-artichoke" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#leek" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#leek" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#melon" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#melon" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#mushroom" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#mushroom" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#non-local-vegetable" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#non-local-vegetable" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#onion" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#onion" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#parsnip" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#parsnip" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#pepper" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#pepper" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#potato" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#potato" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#radish" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#radish" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#rhubarb" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#rhubarb" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#rutabaga" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#rutabaga" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#salad" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#salad" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#salsify" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#salsify" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#shallot" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#shallot" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#squash" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#squash" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#tomato" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#tomato" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#turnip" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#turnip" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#yam" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#yam" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -4944,18 +4944,18 @@ "@value" : "vegetable" } ], "http://www.w3.org/2004/02/skos/core#topConceptOf" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#viennoiserie-", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#viennoiserie-", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#bakery" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#bakery" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -4965,15 +4965,15 @@ "@value" : "viennoiserie" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#walnut", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#walnut", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#nut" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#nut" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -4983,15 +4983,15 @@ "@value" : "walnut" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#wine", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#wine", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#alcoholic-beverage" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#alcoholic-beverage" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -5001,7 +5001,7 @@ "@value" : "wine" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#yam", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#yam", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], @@ -5010,10 +5010,10 @@ "@value" : "Sweet Potato" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#vegetable" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -5023,15 +5023,15 @@ "@value" : "yam" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#yogurt-on-a-bed-of-fruit", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#yogurt-on-a-bed-of-fruit", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#cow-dairy-product" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#cow-dairy-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -5041,15 +5041,15 @@ "@value" : "yogurt on a bed of fruit" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#yogurt-with-fruits", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#yogurt-with-fruits", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#cow-dairy-product" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#cow-dairy-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -5059,5 +5059,5 @@ "@value" : "yogurt with fruits" } ] } ], - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ] \ No newline at end of file diff --git a/src/org/datafoodconsortium/connector/codegen/typescript/static/CHANGELOG.md b/src/org/datafoodconsortium/connector/codegen/typescript/static/CHANGELOG.md index 21e345c..6593ac3 100644 --- a/src/org/datafoodconsortium/connector/codegen/typescript/static/CHANGELOG.md +++ b/src/org/datafoodconsortium/connector/codegen/typescript/static/CHANGELOG.md @@ -9,7 +9,57 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - None -## [1.0.0-beta.2] 2026-06-15 +## [2.0.0-beta.2] - 2026-06-15 + +Ontology v2 update. + +This version has been generated using: + +- [Connector code generator v2 branch](https://github.com/datafoodconsortium/connector-codegen/tree/v2). +- [UML data model PR 29](https://github.com/datafoodconsortium/data-model-uml/pull/29). + +**This version contains breaking changes introduced by the ontology, see below.** + +### Added + +Classes: +- Add `ical:Vevent` +- Add `ical:Value_RECUR` +- Add `geo:Feature` +- Add `geo:Properties` +- Add `geo:Geometry` +- Add `geo:Point` +- Add `geo:Polygon` +- Add `Certification` +- Add `DeliveryStep` +- Add `Organization` +- Add `PickUpStep` +- Add `ProductOption` +- Add `ProductOptionValue` +- Add `Route` +- Add `TemplateSaleSession` +- Add `Variant` +- Add `VariantCaracteristic` + +Properties: +- Add `Catalog:startDate` +- Add `PlannedLocalTransformation:startDate` +- Add `RealizedTransformation:startDate` +- Add `SuppliedProduct:referenceOf`. +- Add `TechnicalProduct:referenceOf`. + +### Changed + +- `Stock:availabilityDate` is now a 1-1 property (**BREAKING CHANGE**) +- `PaymentMethod:paymentMethodProvider` is now a 1-1 property (**BREAKING CHANGE**) +- `PaymentMethod:paymentMethodType` is now a 1-1 property (**BREAKING CHANGE**) +- `Variant:isVariantOf is now a `Variant` instead of `DefinedProduct` (**BREAKING CHANGE**) + +### Removed + +- Removed the `Enterprise` class. It was renamed to `Organization` (**BREAKING CHANGE**) + +## [1.0.0-beta.1] 2026-05-21 Generated from [UML model 3.5.0](https://github.com/datafoodconsortium/data-model-uml/releases/tag/v3.5.0) using the [Connector codegen 1.3.0](https://github.com/datafoodconsortium/connector-codegen/releases/tag/v1.3.0). @@ -263,8 +313,9 @@ See the SUPPORTED.md file [comparison from main to next](https://github.com/data - Initial release. -[unreleased]: https://github.com/datafoodconsortium/connector-typescript/compare/v1.0.0-beta.2...HEAD -[1.0.0-beta.2]: https://github.com/datafoodconsortium/connector-typescript/compare/v1.0.0-alpha.12...v1.0.0-beta.2 +[unreleased]: https://github.com/datafoodconsortium/connector-typescript/compare/v2.0.0-beta.2...HEAD +[2.0.0-beta.2]: https://github.com/datafoodconsortium/connector-typescript/compare/v1.0.0-beta.1...v2.0.0-beta.2 +[1.0.0-beta.1]: https://github.com/datafoodconsortium/connector-typescript/compare/v1.0.0-alpha.12...v1.0.0-beta.1 [1.0.0-alpha.12]: https://github.com/datafoodconsortium/connector-typescript/compare/v1.0.0-alpha.11...v1.0.0-alpha.12 [1.0.0-alpha.11]: https://github.com/datafoodconsortium/connector-typescript/compare/v1.0.0-alpha.10...v1.0.0-alpha.11 [1.0.0-alpha.10]: https://github.com/datafoodconsortium/connector-typescript/compare/v1.0.0-alpha.9...v1.0.0-alpha.10 diff --git a/src/org/datafoodconsortium/connector/codegen/typescript/static/README.md b/src/org/datafoodconsortium/connector/codegen/typescript/static/README.md index 99abc3b..6593814 100644 --- a/src/org/datafoodconsortium/connector/codegen/typescript/static/README.md +++ b/src/org/datafoodconsortium/connector/codegen/typescript/static/README.md @@ -11,6 +11,22 @@ This connector will also help to import and export data so one can exchange info You can install the connector with the following command: `npm i @datafoodconsortium/connector`. +From NPM version 6 you can use different versions of a same package using *package-aliasing* with the following syntax : `npm install @npm:@`. + +For instance you can install the connector v1 and v2 versions using: +```bash +npm install dfc-connector-v1@npm:@datafoodconsortium/connector@1.0.0; +npm install dfc-connector-v2@npm:@datafoodconsortium/connector@2.0.0; +``` + +Or in your *package.json*: +```json + "dependencies": { + "dfc-connector-v1": "npm:@datafoodconsortium/connector@1.0.0", + "dfc-connector-v2": "npm:@datafoodconsortium/connector@2.0.0" + } +``` + ### Import and use the connector Then in you JS file, import the newly installed connector: ```JS @@ -19,6 +35,18 @@ import { Connector } from '@datafoodconsortium/connector'; const connector = new Connector(); ``` +Or with *package-aliasing* (see below): +```TS +import { Connector as ConnectorV1 } from 'dfc-connector-v1'; +import { Connector as ConnectorV2 } from 'dfc-connector-v2'; + +const connectorV1 = new ConnectorV1(); +const connectorV2 = new ConnectorV2(); + +connectorV1.someMethod(); +connectorV2.someMethod(); +``` + ### Load the taxonomies You can then load our different SKOS taxonomies providing the corresponding JSON-LD files: @@ -112,15 +140,17 @@ createAddress(parameters: IConnectorFactoryAddressCreateParams): IAddress; createAllergenCharacteristic(parameters: IConnectorFactoryAllergenCharacteristicCreateParams): IAllergenCharacteristic; createCatalog(parameters: IConnectorFactoryCatalogCreateParams): ICatalog; createCatalogItem(parameters: IConnectorFactoryCatalogItemCreateParams): ICatalogItem; +createCertification(parameters: IConnectorFactoryCertificationCreateParams): ICertification; createCustomerCategory(parameters: IConnectorFactoryCustomerCategoryCreateParams): ICustomerCategory; createDeliveryOption(parameters: IConnectorFactoryDeliveryOptionCreateParams): IDeliveryOption; -createEnterprise(parameters: IConnectorFactoryEnterpriseCreateParams): IEnterprise; +createDeliveryStep(parameters: IConnectorFactoryDeliveryStepCreateParams): IDeliveryStep; createLocalizedProduct(parameters: IConnectorFactoryLocalizedProductCreateParams): ILocalizedProduct; createNutrientCharacteristic(parameters: IConnectorFactoryNutrientCharacteristicCreateParams): INutrientCharacteristic; createOffer(parameters: IConnectorFactoryOfferCreateParams): IOffer; createOpeningHoursSpecification(parameters: IConnectorFactoryOpeningHoursSpecificationCreateParams): IOpeningHoursSpecification; createOrder(parameters: IConnectorFactoryOrderCreateParams): IOrder; createOrderLine(parameters: IConnectorFactoryOrderLineCreateParams): IOrderLine; +createOrganization(parameters: IConnectorFactoryOrganizationCreateParams): IOrganization; createPaymentMethod(parameters: IConnectorFactoryPaymentMethodCreateParams): IPaymentMethod; createPerson(parameters: IConnectorFactoryPersonCreateParams): IPerson; createPhoneNumber(parameters: IConnectorFactoryPhoneNumberCreateParams): IPhoneNumber; @@ -128,6 +158,7 @@ createPhysicalCharacteristic(parameters: IConnectorFactoryPhysicalCharacteristic createPhysicalPlace(parameters: IConnectorFactoryPhysicalPlaceCreateParams): IPhysicalPlace; createPhysicalProduct(parameters: IConnectorFactoryPhysicalProductCreateParams): IPhysicalProduct; createPickupOption(parameters: IConnectorFactoryPickupOptionCreateParams): IPickupOption; +createPickUpStep(parameters: IConnectorFactoryPickUpStepCreateParams): IPickUpStep; createPlannedConsumptionFlow(parameters: IConnectorFactoryPlannedConsumptionFlowCreateParams): IPlannedConsumptionFlow; createPlannedLocalConsumptionFlow(parameters: IConnectorFactoryPlannedLocalConsumptionFlowCreateParams): IPlannedLocalConsumptionFlow; createPlannedLocalProductionFlow(parameters: IConnectorFactoryPlannedLocalProductionFlowCreateParams): IPlannedLocalProductionFlow; @@ -136,16 +167,22 @@ createPlannedProductionFlow(parameters: IConnectorFactoryPlannedProductionFlowCr createPlannedTransformation(parameters: IConnectorFactoryPlannedTransformationCreateParams): IPlannedTransformation; createPrice(parameters: IConnectorFactoryPriceCreateParams): IPrice; createProductBatch(parameters: IConnectorFactoryProductBatchCreateParams): IProductBatch; +createProductOption(parameters: IConnectorFactoryProductOptionCreateParams): IProductOption; +createProductOptionValue(parameters: IConnectorFactoryProductOptionValueCreateParams): IProductOptionValue; createQuantity(parameters: IConnectorFactoryQuantityCreateParams): IQuantity; createRealizedConsumptionFlow(parameters: IConnectorFactoryRealizedConsumptionFlowCreateParams): IRealizedConsumptionFlow; createRealizedProductionFlow(parameters: IConnectorFactoryRealizedProductionFlowCreateParams): IRealizedProductionFlow; createRealizedTransformation(parameters: IConnectorFactoryRealizedTransformationCreateParams): IRealizedTransformation; createRealStock(parameters: IConnectorFactoryRealStockCreateParams): IRealStock; +createRoute(parameters: IConnectorFactoryRouteCreateParams): IRoute; createSaleSession(parameters: IConnectorFactorySaleSessionCreateParams): ISaleSession; createSocialMedia(parameters: IConnectorFactorySocialMediaCreateParams): ISocialMedia; createSuppliedProduct(parameters: IConnectorFactorySuppliedProductCreateParams): ISuppliedProduct; createTechnicalProduct(parameters: IConnectorFactoryTechnicalProductCreateParams): ITechnicalProduct; +createTemplateSaleSession(parameters: IConnectorFactoryTemplateSaleSessionCreateParams): ITemplateSaleSession; createTheoreticalStock(parameters: IConnectorFactoryTheoreticalStockCreateParams): ITheoreticalStock; +createVariant(parameters: IConnectorFactoryVariantCreateParams): IVariant; +createVariantCharacteristic(parameters: IConnectorFactoryVariantCharacteristicCreateParams): IVariantCharacteristic; createVirtualPlace(parameters: IConnectorFactoryVirtualPlaceCreateParams): IVirtualPlace; ``` @@ -381,4 +418,8 @@ const plannedTransformation = connector.createPlannedTransformation({ consumptionFlows: [plannedConsumptionFlow], productionFlows: [plannedProductionFlow] }); -``` \ No newline at end of file +``` + +## Contributing + +To publish the package use `npm publish --access public --tag latest`; \ No newline at end of file diff --git a/src/org/datafoodconsortium/connector/codegen/typescript/static/package-lock.json b/src/org/datafoodconsortium/connector/codegen/typescript/static/package-lock.json index 41029e7..b110cfe 100644 --- a/src/org/datafoodconsortium/connector/codegen/typescript/static/package-lock.json +++ b/src/org/datafoodconsortium/connector/codegen/typescript/static/package-lock.json @@ -1,12 +1,12 @@ { "name": "@datafoodconsortium/connector", - "version": "1.0.0-beta.2", + "version": "2.0.0-beta.2", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@datafoodconsortium/connector", - "version": "1.0.0-beta.2", + "version": "2.0.0-beta.2", "license": "MIT", "dependencies": { "@rdfjs/serializer-jsonld-ext": "^4.0.0", diff --git a/src/org/datafoodconsortium/connector/codegen/typescript/static/package.json b/src/org/datafoodconsortium/connector/codegen/typescript/static/package.json index 61d7728..5bbad56 100644 --- a/src/org/datafoodconsortium/connector/codegen/typescript/static/package.json +++ b/src/org/datafoodconsortium/connector/codegen/typescript/static/package.json @@ -4,7 +4,7 @@ "author": "Maxime Lecoq", "license": "MIT", "type": "module", - "version": "1.0.0-beta.2", + "version": "2.0.0-beta.2", "repository": { "type": "git", "url": "https://github.com/datafoodconsortium/connector-typescript.git", diff --git a/src/org/datafoodconsortium/connector/codegen/typescript/static/src/Connector.ts b/src/org/datafoodconsortium/connector/codegen/typescript/static/src/Connector.ts index ed91fb2..c89c148 100644 --- a/src/org/datafoodconsortium/connector/codegen/typescript/static/src/Connector.ts +++ b/src/org/datafoodconsortium/connector/codegen/typescript/static/src/Connector.ts @@ -11,7 +11,7 @@ import context from "./context.js"; import IConnector, { IConnectorCreateParams } from "./IConnector.js"; import IConnectorExporter from "./IConnectorExporter"; import IConnectorExportOptions from "./IConnectorExportOptions.js"; -import IConnectorFactory, { AddressCreateParams, AllergenCharacteristicCreateParams, CatalogCreateParams, CatalogItemCreateParams, CustomerCategoryCreateParams, DeliveryOptionCreateParams, EnterpriseCreateParams, IConnectorFactoryAddressCreateParams, IConnectorFactoryAllergenCharacteristicCreateParams, IConnectorFactoryCatalogCreateParams, IConnectorFactoryCatalogItemCreateParams, IConnectorFactoryCustomerCategoryCreateParams, IConnectorFactoryDeliveryOptionCreateParams, IConnectorFactoryEnterpriseCreateParams, IConnectorFactoryLocalizedProductCreateParams, IConnectorFactoryNutrientCharacteristicCreateParams, IConnectorFactoryOfferCreateParams, IConnectorFactoryOpeningHoursSpecificationCreateParams, IConnectorFactoryOrderCreateParams, IConnectorFactoryOrderLineCreateParams, IConnectorFactoryPaymentMethodCreateParams, IConnectorFactoryPersonCreateParams, IConnectorFactoryPhoneNumberCreateParams, IConnectorFactoryPhysicalCharacteristicCreateParams, IConnectorFactoryPhysicalPlaceCreateParams, IConnectorFactoryPhysicalProductCreateParams, IConnectorFactoryPickupOptionCreateParams, IConnectorFactoryPlannedConsumptionFlowCreateParams, IConnectorFactoryPlannedLocalConsumptionFlowCreateParams, IConnectorFactoryPlannedLocalProductionFlowCreateParams, IConnectorFactoryPlannedLocalTransformationCreateParams, IConnectorFactoryPlannedProductionFlowCreateParams, IConnectorFactoryPlannedTransformationCreateParams, IConnectorFactoryPriceCreateParams, IConnectorFactoryProductBatchCreateParams, IConnectorFactoryQuantityCreateParams, IConnectorFactoryRealizedConsumptionFlowCreateParams, IConnectorFactoryRealizedProductionFlowCreateParams, IConnectorFactoryRealizedTransformationCreateParams, IConnectorFactoryRealStockCreateParams, IConnectorFactorySaleSessionCreateParams, IConnectorFactorySocialMediaCreateParams, IConnectorFactorySuppliedProductCreateParams, IConnectorFactoryTechnicalProductCreateParams, IConnectorFactoryTheoreticalStockCreateParams, IConnectorFactoryVirtualPlaceCreateParams, LocalizedProductCreateParams, NutrientCharacteristicCreateParams, OfferCreateParams, OpeningHoursSpecificationCreateParams, OrderCreateParams, OrderLineCreateParams, PaymentMethodCreateParams, PersonCreateParams, PhoneNumberCreateParams, PhysicalCharacteristicCreateParams, PhysicalPlaceCreateParams, PhysicalProductCreateParams, PickupOptionCreateParams, PlannedConsumptionFlowCreateParams, PlannedLocalConsumptionFlowCreateParams, PlannedLocalProductionFlowCreateParams, PlannedLocalTransformationCreateParams, PlannedProductionFlowCreateParams, PlannedTransformationCreateParams, PriceCreateParams, ProductBatchCreateParams, QuantityCreateParams, RealizedConsumptionFlowCreateParams, RealizedProductionFlowCreateParams, RealizedTransformationCreateParams, RealStockCreateParams, SaleSessionCreateParams, SocialMediaCreateParams, SuppliedProductCreateParams, TechnicalProductCreateParams, TheoreticalStockCreateParams, VirtualPlaceCreateParams } from "./IConnectorFactory.js"; +import IConnectorFactory, { AddressCreateParams, AllergenCharacteristicCreateParams, CatalogCreateParams, CatalogItemCreateParams, CertificationCreateParams, CustomerCategoryCreateParams, DeliveryOptionCreateParams, OrganizationCreateParams, IConnectorFactoryAddressCreateParams, IConnectorFactoryAllergenCharacteristicCreateParams, IConnectorFactoryCatalogCreateParams, IConnectorFactoryCatalogItemCreateParams, IConnectorFactoryCustomerCategoryCreateParams, IConnectorFactoryDeliveryOptionCreateParams, IConnectorFactoryOrganizationCreateParams, IConnectorFactoryLocalizedProductCreateParams, IConnectorFactoryNutrientCharacteristicCreateParams, IConnectorFactoryOfferCreateParams, IConnectorFactoryOpeningHoursSpecificationCreateParams, IConnectorFactoryOrderCreateParams, IConnectorFactoryOrderLineCreateParams, IConnectorFactoryPaymentMethodCreateParams, IConnectorFactoryPersonCreateParams, IConnectorFactoryPhoneNumberCreateParams, IConnectorFactoryPhysicalCharacteristicCreateParams, IConnectorFactoryPhysicalPlaceCreateParams, IConnectorFactoryPhysicalProductCreateParams, IConnectorFactoryPickupOptionCreateParams, IConnectorFactoryPlannedConsumptionFlowCreateParams, IConnectorFactoryPlannedLocalConsumptionFlowCreateParams, IConnectorFactoryPlannedLocalProductionFlowCreateParams, IConnectorFactoryPlannedLocalTransformationCreateParams, IConnectorFactoryPlannedProductionFlowCreateParams, IConnectorFactoryPlannedTransformationCreateParams, IConnectorFactoryPriceCreateParams, IConnectorFactoryProductBatchCreateParams, IConnectorFactoryQuantityCreateParams, IConnectorFactoryRealizedConsumptionFlowCreateParams, IConnectorFactoryRealizedProductionFlowCreateParams, IConnectorFactoryRealizedTransformationCreateParams, IConnectorFactoryRealStockCreateParams, IConnectorFactorySaleSessionCreateParams, IConnectorFactorySocialMediaCreateParams, IConnectorFactorySuppliedProductCreateParams, IConnectorFactoryTechnicalProductCreateParams, IConnectorFactoryTheoreticalStockCreateParams, IConnectorFactoryVirtualPlaceCreateParams, LocalizedProductCreateParams, NutrientCharacteristicCreateParams, OfferCreateParams, OpeningHoursSpecificationCreateParams, OrderCreateParams, OrderLineCreateParams, PaymentMethodCreateParams, PersonCreateParams, PhoneNumberCreateParams, PhysicalCharacteristicCreateParams, PhysicalPlaceCreateParams, PhysicalProductCreateParams, PickupOptionCreateParams, PlannedConsumptionFlowCreateParams, PlannedLocalConsumptionFlowCreateParams, PlannedLocalProductionFlowCreateParams, PlannedLocalTransformationCreateParams, PlannedProductionFlowCreateParams, PlannedTransformationCreateParams, PriceCreateParams, ProductBatchCreateParams, QuantityCreateParams, RealizedConsumptionFlowCreateParams, RealizedProductionFlowCreateParams, RealizedTransformationCreateParams, RealStockCreateParams, SaleSessionCreateParams, SocialMediaCreateParams, SuppliedProductCreateParams, TechnicalProductCreateParams, TheoreticalStockCreateParams, VirtualPlaceCreateParams, IConnectorFactoryCertificationCreateParams, DeliveryStepCreateParams, IConnectorFactoryDeliveryStepCreateParams, PickUpStepCreateParams, IConnectorFactoryPickUpStepCreateParams, ProductOptionCreateParams, IConnectorFactoryProductOptionCreateParams, ProductOptionValueCreateParams, IConnectorFactoryProductOptionValueCreateParams, RouteCreateParams, IConnectorFactoryRouteCreateParams, TemplateSaleSessionCreateParams, IConnectorFactoryTemplateSaleSessionCreateParams, VariantCreateParams, IConnectorFactoryVariantCreateParams, VariantCharacteristicCreateParams, IConnectorFactoryVariantCharacteristicCreateParams } from "./IConnectorFactory.js"; import IConnectorImporter from "./IConnectorImporter"; import IConnectorImportOptions from "./IConnectorImportOptions.js"; import IConnectorStore from "./IConnectorStore"; @@ -23,8 +23,9 @@ import IAgent from "./IAgent.js"; import IAllergenCharacteristic from "./IAllergenCharacteristic.js"; import ICatalog from "./ICatalog.js"; import ICatalogItem from "./ICatalogItem.js"; +import ICertification from "./ICertification.js"; import ICustomerCategory from "./ICustomerCategory.js"; -import IEnterprise from "./IEnterprise.js"; +import IOrganization from "./IOrganization.js"; import INutrientCharacteristic from "./INutrientCharacteristic.js"; import IOffer from "./IOffer.js"; import IOrder from "./IOrder.js"; @@ -62,7 +63,14 @@ import IRealizedTransformation from "./IRealizedTransformation.js"; import ISocialMedia from "./ISocialMedia.js"; import IVirtualPlace from "./IVirtualPlace.js"; import { DatasetCore } from "@rdfjs/types"; - +import IDeliveryStep from "./IDeliveryStep.js"; +import IPickUpStep from "./IPickUpStep.js"; +import IProductOption from "./IProductOption.js"; +import IProductOptionValue from "./IProductOptionValue.js"; +import IRoute from "./IRoute.js"; +import ITemplateSaleSession from "./ITemplateSaleSession.js"; +import IVariant from "./IVariant.js"; +import IVariantCharacteristic from "./IVariantCharacteristic.js"; export default class Connector implements IConnector { public FACETS?: ISKOSConcept; @@ -84,7 +92,7 @@ export default class Connector implements IConnector { this.fetchFunction = async (semanticId: string) => (await fetch(semanticId)); this.factory = new ConnectorFactory(this); this.importer = new ConnectorImporterJsonldStream({ context: context, documentLoader: new ConnectorImporterJsonldStreamDocumentLoader }); - const outputContext = "https://www.datafoodconsortium.org/wp-content/plugins/wordpress-context-jsonld/context_1.16.0.jsonld"; + const outputContext = "https://www.datafoodconsortium.org/wp-content/plugins/wordpress-context-jsonld/context_2.0.0.jsonld"; this.exporter = new ConnectorExporterJsonldStream(context, outputContext); } @@ -124,6 +132,12 @@ export default class Connector implements IConnector { return this.factory.createCatalogItem(parameters); } + public createCertification(parameters: IConnectorCreateParams & CertificationCreateParams): ICertification; + public createCertification(parameters: { other: ICertification, doNotStore?: boolean }): ICertification; + public createCertification(parameters: IConnectorFactoryCertificationCreateParams): ICertification { + return this.factory.createCertification(parameters); + } + public createCustomerCategory(parameters: IConnectorCreateParams & CustomerCategoryCreateParams): ICustomerCategory; public createCustomerCategory(parameters: { other: ICustomerCategory, doNotStore?: boolean }): ICustomerCategory; public createCustomerCategory(parameters: IConnectorFactoryCustomerCategoryCreateParams): ICustomerCategory { @@ -136,10 +150,10 @@ export default class Connector implements IConnector { return this.factory.createDeliveryOption(parameters); } - public createEnterprise(parameters: IConnectorCreateParams & EnterpriseCreateParams): IEnterprise; - public createEnterprise(parameters: { other: IEnterprise, doNotStore?: boolean }): IEnterprise; - public createEnterprise(parameters: IConnectorFactoryEnterpriseCreateParams): IEnterprise { - return this.factory.createEnterprise(parameters); + public createDeliveryStep(parameters: IConnectorCreateParams & DeliveryStepCreateParams): IDeliveryStep; + public createDeliveryStep(parameters: { other: IDeliveryStep, doNotStore?: boolean }): IDeliveryStep; + public createDeliveryStep(parameters: IConnectorFactoryDeliveryStepCreateParams): IDeliveryStep { + return this.factory.createDeliveryStep(parameters); } public createLocalizedProduct(parameters: IConnectorCreateParams & LocalizedProductCreateParams): ILocalizedProduct; @@ -178,6 +192,12 @@ export default class Connector implements IConnector { return this.factory.createOrderLine(parameters); } + public createOrganization(parameters: IConnectorCreateParams & OrganizationCreateParams): IOrganization; + public createOrganization(parameters: { other: IOrganization, doNotStore?: boolean }): IOrganization; + public createOrganization(parameters: IConnectorFactoryOrganizationCreateParams): IOrganization { + return this.factory.createOrganization(parameters); + } + public createPaymentMethod(parameters: IConnectorCreateParams & PaymentMethodCreateParams): IPaymentMethod; public createPaymentMethod(parameters: { other: IPaymentMethod, doNotStore?: boolean }): IPaymentMethod; public createPaymentMethod(parameters: IConnectorFactoryPaymentMethodCreateParams): IPaymentMethod { @@ -220,6 +240,12 @@ export default class Connector implements IConnector { return this.factory.createPickupOption(parameters); } + public createPickUpStep(parameters: IConnectorCreateParams & PickUpStepCreateParams): IPickUpStep; + public createPickUpStep(parameters: { other: IPickUpStep, doNotStore?: boolean }): IPickUpStep; + public createPickUpStep(parameters: IConnectorFactoryPickUpStepCreateParams): IPickUpStep { + return this.factory.createPickUpStep(parameters); + } + public createPlannedConsumptionFlow(parameters: IConnectorCreateParams & PlannedConsumptionFlowCreateParams): IPlannedConsumptionFlow; public createPlannedConsumptionFlow(parameters: { doNotStore?: boolean, other: IPlannedConsumptionFlow }): IPlannedConsumptionFlow; public createPlannedConsumptionFlow(parameters: IConnectorFactoryPlannedConsumptionFlowCreateParams): IPlannedConsumptionFlow { @@ -268,6 +294,18 @@ export default class Connector implements IConnector { return this.factory.createProductBatch(parameters); } + public createProductOption(parameters: IConnectorCreateParams & ProductOptionCreateParams): IProductOption; + public createProductOption(parameters: { other: IProductOption, doNotStore?: boolean }): IProductOption; + public createProductOption(parameters: IConnectorFactoryProductOptionCreateParams): IProductOption { + return this.factory.createProductOption(parameters); + } + + public createProductOptionValue(parameters: IConnectorCreateParams & ProductOptionValueCreateParams): IProductOptionValue; + public createProductOptionValue(parameters: { other: IProductOptionValue, doNotStore?: boolean }): IProductOptionValue; + public createProductOptionValue(parameters: IConnectorFactoryProductOptionValueCreateParams): IProductOptionValue { + return this.factory.createProductOptionValue(parameters); + } + public createQuantity(parameters: QuantityCreateParams): IQuantity public createQuantity(parameters: { other: IQuantity, doNotStore?: boolean }): IQuantity public createQuantity(parameters: IConnectorFactoryQuantityCreateParams): IQuantity { @@ -298,6 +336,12 @@ export default class Connector implements IConnector { return this.factory.createRealStock(parameters); } + public createRoute(parameters: IConnectorCreateParams & RouteCreateParams): IRoute; + public createRoute(parameters: { other: IRoute, doNotStore?: boolean }): IRoute; + public createRoute(parameters: IConnectorFactoryRouteCreateParams): IRoute { + return this.factory.createRoute(parameters); + } + public createSaleSession(parameters: IConnectorCreateParams & SaleSessionCreateParams): ISaleSession; public createSaleSession(parameters: { other: ISaleSession, doNotStore?: boolean }): ISaleSession; public createSaleSession(parameters: IConnectorFactorySaleSessionCreateParams): ISaleSession { @@ -322,12 +366,30 @@ export default class Connector implements IConnector { return this.factory.createTechnicalProduct(parameters); } + public createTemplateSaleSession(parameters: IConnectorCreateParams & TemplateSaleSessionCreateParams): ITemplateSaleSession; + public createTemplateSaleSession(parameters: { other: ITemplateSaleSession, doNotStore?: boolean }): ITemplateSaleSession; + public createTemplateSaleSession(parameters: IConnectorFactoryTemplateSaleSessionCreateParams): ITemplateSaleSession { + return this.factory.createTemplateSaleSession(parameters); + } + public createTheoreticalStock(parameters: IConnectorCreateParams & TheoreticalStockCreateParams): ITheoreticalStock; public createTheoreticalStock(parameters: { other: ITheoreticalStock, doNotStore?: boolean }): ITheoreticalStock; public createTheoreticalStock(parameters: IConnectorFactoryTheoreticalStockCreateParams): ITheoreticalStock { return this.factory.createTheoreticalStock(parameters); } + public createVariant(parameters: IConnectorCreateParams & VariantCreateParams): IVariant; + public createVariant(parameters: { other: IVariant, doNotStore?: boolean }): IVariant; + public createVariant(parameters: IConnectorFactoryVariantCreateParams): IVariant { + return this.factory.createVariant(parameters); + } + + public createVariantCharacteristic(parameters: IConnectorCreateParams & VariantCharacteristicCreateParams): IVariantCharacteristic; + public createVariantCharacteristic(parameters: { other: IVariantCharacteristic, doNotStore?: boolean }): IVariantCharacteristic; + public createVariantCharacteristic(parameters: IConnectorFactoryVariantCharacteristicCreateParams): IVariantCharacteristic { + return this.factory.createVariantCharacteristic(parameters); + } + public createVirtualPlace(parameters: IConnectorCreateParams & VirtualPlaceCreateParams): IVirtualPlace; public createVirtualPlace(parameters: { other: IVirtualPlace, doNotStore?: boolean }): IVirtualPlace; public createVirtualPlace(parameters: IConnectorFactoryVirtualPlaceCreateParams): IVirtualPlace { @@ -368,7 +430,7 @@ export default class Connector implements IConnector { if (options && options.callbacks) options.callbacks.forEach((callback: Function) => callback(semanticObject)); } - } catch (e) { } + } catch (e) {} }); if (options) { @@ -449,22 +511,22 @@ export default class Connector implements IConnector { } public async loadFacets(facets: any): Promise { - const prefix: string = "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#"; + const prefix: string = "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#"; this.FACETS = await this.importThesaurus(facets, prefix); } public async loadMeasures(measures: any): Promise { - const prefix: string = "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/measures.rdf#"; + const prefix: string = "http://w3id.org/dfc/taxonomies/v2.0.0/measures.rdf#"; this.MEASURES = await this.importThesaurus(measures, prefix); } public async loadProductTypes(productTypes: any): Promise { - const prefix: string = "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#"; + const prefix: string = "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#"; this.PRODUCT_TYPES = await this.importThesaurus(productTypes, prefix); } public async loadVocabulary(vocabulary: any): Promise { - const prefix: string = "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/vocabulary.rdf#"; + const prefix: string = "http://w3id.org/dfc/taxonomies/v2.0.0/vocabulary.rdf#"; this.VOCABULARY = await this.importThesaurus(vocabulary, prefix); } diff --git a/src/org/datafoodconsortium/connector/codegen/typescript/static/src/ConnectorFactory.ts b/src/org/datafoodconsortium/connector/codegen/typescript/static/src/ConnectorFactory.ts index 91d7abd..ebdf6dc 100644 --- a/src/org/datafoodconsortium/connector/codegen/typescript/static/src/ConnectorFactory.ts +++ b/src/org/datafoodconsortium/connector/codegen/typescript/static/src/ConnectorFactory.ts @@ -5,7 +5,7 @@ import { DatasetCore } from '@rdfjs/types'; // Static import IConnector from "./IConnector.js"; -import IConnectorFactory, { IConnectorFactoryAddressCreateParams, IConnectorFactoryAllergenCharacteristicCreateParams, IConnectorFactoryCatalogCreateParams, IConnectorFactoryCatalogItemCreateParams, IConnectorFactoryCustomerCategoryCreateParams, IConnectorFactoryDeliveryOptionCreateParams, IConnectorFactoryEnterpriseCreateParams, IConnectorFactoryLocalizedProductCreateParams, IConnectorFactoryNutrientCharacteristicCreateParams, IConnectorFactoryOfferCreateParams, IConnectorFactoryOpeningHoursSpecificationCreateParams, IConnectorFactoryOrderCreateParams, IConnectorFactoryOrderLineCreateParams, IConnectorFactoryPaymentMethodCreateParams, IConnectorFactoryPersonCreateParams, IConnectorFactoryPhoneNumberCreateParams, IConnectorFactoryPhysicalCharacteristicCreateParams, IConnectorFactoryPhysicalPlaceCreateParams, IConnectorFactoryPhysicalProductCreateParams, IConnectorFactoryPickupOptionCreateParams, IConnectorFactoryPlannedConsumptionFlowCreateParams, IConnectorFactoryPlannedLocalConsumptionFlowCreateParams, IConnectorFactoryPlannedLocalProductionFlowCreateParams, IConnectorFactoryPlannedLocalTransformationCreateParams, IConnectorFactoryPlannedProductionFlowCreateParams, IConnectorFactoryPlannedTransformationCreateParams, IConnectorFactoryPriceCreateParams, IConnectorFactoryProductBatchCreateParams, IConnectorFactoryQuantityCreateParams, IConnectorFactoryRealizedConsumptionFlowCreateParams, IConnectorFactoryRealizedProductionFlowCreateParams, IConnectorFactoryRealizedTransformationCreateParams, IConnectorFactoryRealStockCreateParams, IConnectorFactorySaleSessionCreateParams, IConnectorFactorySocialMediaCreateParams, IConnectorFactorySuppliedProductCreateParams, IConnectorFactoryTechnicalProductCreateParams, IConnectorFactoryTheoreticalStockCreateParams, IConnectorFactoryVirtualPlaceCreateParams } from "./IConnectorFactory.js"; +import IConnectorFactory, { IConnectorFactoryAddressCreateParams, IConnectorFactoryAllergenCharacteristicCreateParams, IConnectorFactoryCatalogCreateParams, IConnectorFactoryCatalogItemCreateParams, IConnectorFactoryCustomerCategoryCreateParams, IConnectorFactoryDeliveryOptionCreateParams, IConnectorFactoryOrganizationCreateParams, IConnectorFactoryLocalizedProductCreateParams, IConnectorFactoryNutrientCharacteristicCreateParams, IConnectorFactoryOfferCreateParams, IConnectorFactoryOpeningHoursSpecificationCreateParams, IConnectorFactoryOrderCreateParams, IConnectorFactoryOrderLineCreateParams, IConnectorFactoryPaymentMethodCreateParams, IConnectorFactoryPersonCreateParams, IConnectorFactoryPhoneNumberCreateParams, IConnectorFactoryPhysicalCharacteristicCreateParams, IConnectorFactoryPhysicalPlaceCreateParams, IConnectorFactoryPhysicalProductCreateParams, IConnectorFactoryPickupOptionCreateParams, IConnectorFactoryPlannedConsumptionFlowCreateParams, IConnectorFactoryPlannedLocalConsumptionFlowCreateParams, IConnectorFactoryPlannedLocalProductionFlowCreateParams, IConnectorFactoryPlannedLocalTransformationCreateParams, IConnectorFactoryPlannedProductionFlowCreateParams, IConnectorFactoryPlannedTransformationCreateParams, IConnectorFactoryPriceCreateParams, IConnectorFactoryProductBatchCreateParams, IConnectorFactoryQuantityCreateParams, IConnectorFactoryRealizedConsumptionFlowCreateParams, IConnectorFactoryRealizedProductionFlowCreateParams, IConnectorFactoryRealizedTransformationCreateParams, IConnectorFactoryRealStockCreateParams, IConnectorFactorySaleSessionCreateParams, IConnectorFactorySocialMediaCreateParams, IConnectorFactorySuppliedProductCreateParams, IConnectorFactoryTechnicalProductCreateParams, IConnectorFactoryTheoreticalStockCreateParams, IConnectorFactoryVirtualPlaceCreateParams, IConnectorFactoryCertificationCreateParams, IConnectorFactoryDeliveryStepCreateParams, IConnectorFactoryPickUpStepCreateParams, IConnectorFactoryRouteCreateParams, IConnectorFactoryTemplateSaleSessionCreateParams, IConnectorFactoryProductOptionCreateParams, IConnectorFactoryProductOptionValueCreateParams, IConnectorFactoryVariantCreateParams, IConnectorFactoryVariantCharacteristicCreateParams } from "./IConnectorFactory.js"; // Generated Classes import Address from "./Address.js"; @@ -13,8 +13,8 @@ import AllergenCharacteristic from "./AllergenCharacteristic.js"; import Catalog from "./Catalog.js"; import CatalogItem from "./CatalogItem.js"; import CustomerCategory from "./CustomerCategory.js"; +import Organization from "./Organization.js"; import DeliveryOption from "./DeliveryOption.js"; -import Enterprise from "./Enterprise.js"; import NutrientCharacteristic from "./NutrientCharacteristic.js"; import Offer from "./Offer.js"; import Order from "./Order.js"; @@ -22,6 +22,7 @@ import OrderLine from "./OrderLine.js"; import Person from "./Person.js"; import PhysicalCharacteristic from "./PhysicalCharacteristic.js"; import Price from "./Price.js"; +import QuantitativeValue from "./QuantitativeValue.js"; import SaleSession from "./SaleSession.js"; import SKOSConcept from "./SKOSConcept.js"; import SuppliedProduct from "./SuppliedProduct.js"; @@ -37,7 +38,6 @@ import PlannedLocalConsumptionFlow from "./PlannedLocalConsumptionFlow.js"; import PlannedLocalProductionFlow from "./PlannedLocalProductionFlow.js"; import PlannedLocalTransformation from "./PlannedLocalTransformation.js"; import ProductBatch from "./ProductBatch.js"; -import QuantitativeValue from "./QuantitativeValue.js"; import RealizedConsumptionFlow from "./RealizedConsumptionFlow.js"; import RealizedProductionFlow from "./RealizedProductionFlow.js"; import RealizedTransformation from "./RealizedTransformation.js"; @@ -55,7 +55,7 @@ import IAllergenCharacteristic from "./IAllergenCharacteristic.js"; import ICatalog from "./ICatalog.js"; import ICatalogItem from "./ICatalogItem.js"; import ICustomerCategory from "./ICustomerCategory.js"; -import IEnterprise from "./IEnterprise.js"; +import IOrganization from "./IOrganization.js"; import IPrice from "./IPrice.js"; import ISuppliedProduct from "./ISuppliedProduct.js"; import INutrientCharacteristic from "./INutrientCharacteristic.js"; @@ -92,6 +92,24 @@ import IRealizedTransformation from "./IRealizedTransformation.js"; import ISocialMedia from "./ISocialMedia.js"; import IVirtualPlace from "./IVirtualPlace.js"; import OpeningHoursSpecification from "./OpeningHoursSpecification.js"; +import ICertification from "./ICertification.js"; +import Certification from "./Certification.js"; +import IDeliveryStep from "./IDeliveryStep.js"; +import DeliveryStep from "./DeliveryStep.js"; +import IPickUpStep from "./IPickUpStep.js"; +import PickupStep from "./PickupStep.js"; +import IRoute from "./IRoute.js"; +import Route from "./Route.js"; +import ITemplateSaleSession from "./ITemplateSaleSession.js"; +import TemplateSaleSession from "./TemplateSaleSession.js"; +import IProductOption from "./IProductOption.js"; +import ProductOption from "./ProductOption.js"; +import IProductOptionValue from "./IProductOptionValue.js"; +import ProductOptionValue from "./ProductOptionValue.js"; +import IVariant from "./IVariant.js"; +import Variant from "./Variant.js"; +import IVariantCharacteristic from "./IVariantCharacteristic.js"; +import VariantCharacteristic from "./VariantCharacteristic.js"; export default class ConnectorFactory implements IConnectorFactory { @@ -123,6 +141,10 @@ export default class ConnectorFactory implements IConnectorFactory { return new CatalogItem({ connector: this.connector, ...parameters }); } + public createCertification(parameters: IConnectorFactoryCertificationCreateParams): ICertification { + return new Certification({ connector: this.connector, ...parameters }); + } + public createCustomerCategory(parameters: IConnectorFactoryCustomerCategoryCreateParams): ICustomerCategory { return new CustomerCategory({ connector: this.connector, ...parameters }); } @@ -131,8 +153,8 @@ export default class ConnectorFactory implements IConnectorFactory { return new DeliveryOption({ connector: this.connector, ...parameters }); } - public createEnterprise(parameters: IConnectorFactoryEnterpriseCreateParams): IEnterprise { - return new Enterprise({ connector: this.connector, ...parameters }); + public createDeliveryStep(parameters: IConnectorFactoryDeliveryStepCreateParams): IDeliveryStep { + return new DeliveryStep({ connector: this.connector, ...parameters }); } public createLocalizedProduct(parameters: IConnectorFactoryLocalizedProductCreateParams): ILocalizedProduct { @@ -159,6 +181,10 @@ export default class ConnectorFactory implements IConnectorFactory { return new OrderLine({ connector: this.connector, ...parameters }); } + public createOrganization(parameters: IConnectorFactoryOrganizationCreateParams): IOrganization { + return new Organization({ connector: this.connector, ...parameters }); + } + public createPaymentMethod(parameters: IConnectorFactoryPaymentMethodCreateParams): IPaymentMethod { return new PaymentMethod({ connector: this.connector, ...parameters }); } @@ -187,6 +213,10 @@ export default class ConnectorFactory implements IConnectorFactory { return new PickupOption({ connector: this.connector, ...parameters }); } + public createPickUpStep(parameters: IConnectorFactoryPickUpStepCreateParams): IPickUpStep { + return new PickupStep({ connector: this.connector, ...parameters }); + } + public createPlannedConsumptionFlow(parameters: IConnectorFactoryPlannedConsumptionFlowCreateParams): IPlannedConsumptionFlow { return new PlannedConsumptionFlow({ connector: this.connector, ...parameters }); } @@ -219,6 +249,14 @@ export default class ConnectorFactory implements IConnectorFactory { return new ProductBatch({ connector: this.connector, ...parameters }); } + public createProductOption(parameters: IConnectorFactoryProductOptionCreateParams): IProductOption { + return new ProductOption({ connector: this.connector, ...parameters }); + } + + public createProductOptionValue(parameters: IConnectorFactoryProductOptionValueCreateParams): IProductOptionValue { + return new ProductOptionValue({ connector: this.connector, ...parameters }); + } + public createQuantity(parameters: IConnectorFactoryQuantityCreateParams): IQuantity { return new QuantitativeValue({ connector: this.connector, ...parameters }); } @@ -239,6 +277,10 @@ export default class ConnectorFactory implements IConnectorFactory { return new RealStock({ connector: this.connector, ...parameters }); } + public createRoute(parameters: IConnectorFactoryRouteCreateParams): IRoute { + return new Route({ connector: this.connector, ...parameters }); + } + public createSaleSession(parameters: IConnectorFactorySaleSessionCreateParams): ISaleSession { return new SaleSession({ connector: this.connector, ...parameters }); } @@ -255,17 +297,29 @@ export default class ConnectorFactory implements IConnectorFactory { return new TechnicalProduct({ connector: this.connector, ...parameters }); } + public createTemplateSaleSession(parameters: IConnectorFactoryTemplateSaleSessionCreateParams): ITemplateSaleSession { + return new TemplateSaleSession({ connector: this.connector, ...parameters }); + } + public createTheoreticalStock(parameters: IConnectorFactoryTheoreticalStockCreateParams): ITheoreticalStock { return new TheoreticalStock({ connector: this.connector, ...parameters }); } + public createVariant(parameters: IConnectorFactoryVariantCreateParams): IVariant { + return new Variant({ connector: this.connector, ...parameters }); + } + + public createVariantCharacteristic(parameters: IConnectorFactoryVariantCharacteristicCreateParams): IVariantCharacteristic { + return new VariantCharacteristic({ connector: this.connector, ...parameters }); + } + public createVirtualPlace(parameters: IConnectorFactoryVirtualPlaceCreateParams): IVirtualPlace { return new VirtualPlace({ connector: this.connector, ...parameters }); } public createFromType(type: string): Semanticable | undefined { let result: Semanticable | undefined = undefined; - const prefix: string = "https://github.com/datafoodconsortium/ontology/releases/latest/download/DFC_BusinessOntology.owl#"; + const prefix: string = "http://w3id.org/dfc/ontology/v2.0.0/src/DFC_BusinessOntology.owl#"; switch (type) { case prefix + "Address": result = this.createAddress({ semanticId: "" }); @@ -319,6 +373,11 @@ export default class ConnectorFactory implements IConnectorFactory { result = this.createCatalogItem({ semanticId: "" }); break; + // There is a typo in the ontology, see https://github.com/datafoodconsortium/ontology/issues/217. + case prefix + "Certfication": + result = this.createCertification({ semanticId: "" }); + break; + case prefix + "CustomerCategory": result = this.createCustomerCategory({ semanticId: "" }); break; @@ -327,8 +386,8 @@ export default class ConnectorFactory implements IConnectorFactory { result = this.createDeliveryOption({ semanticId: "" }); break; - case prefix + "Enterprise": - result = this.createEnterprise({ semanticId: "" }); + case prefix + "DeliveryStep": + result = this.createDeliveryStep({ semanticId: "" }); break; case prefix + "LocalizedProduct": @@ -354,6 +413,10 @@ export default class ConnectorFactory implements IConnectorFactory { case prefix + "OrderLine": result = this.createOrderLine({ semanticId: "" }); break; + + case prefix + "Organization": + result = this.createOrganization({ semanticId: "" }); + break; case prefix + "PaymentMethod": result = this.createPaymentMethod({ semanticId: "" }); @@ -383,6 +446,10 @@ export default class ConnectorFactory implements IConnectorFactory { result = this.createPickupOption({ semanticId: "" }); break; + case prefix + "PickUpStep": + result = this.createPickUpStep({ semanticId: "" }); + break; + case prefix + "Price": result = this.createPrice({}); break; @@ -391,6 +458,14 @@ export default class ConnectorFactory implements IConnectorFactory { result = this.createProductBatch({ semanticId: "" }); break; + case prefix + "ProductOption": + result = this.createProductOption({ semanticId: "" }); + break; + + case prefix + "ProductOptionValue": + result = this.createProductOptionValue({ semanticId: "" }); + break; + case prefix + "QuantitativeValue": result = this.createQuantity({}); break; @@ -399,6 +474,10 @@ export default class ConnectorFactory implements IConnectorFactory { result = this.createRealStock({ semanticId: "" }); break; + case prefix + "Route": + result = this.createRoute({ semanticId: "" }); + break; + case prefix + "SaleSession": result = this.createSaleSession({ semanticId: "" }); break; @@ -415,14 +494,35 @@ export default class ConnectorFactory implements IConnectorFactory { result = this.createTechnicalProduct({ semanticId: "" }); break; + case prefix + "TemplateSaleSession": + result = this.createTemplateSaleSession({ semanticId: "" }); + break; + case prefix + "TheoreticalStock": result = this.createTheoreticalStock({ semanticId: "" }); break; + case prefix + "Variant": + result = this.createVariant({ semanticId: "" }); + break; + + // There is a typo in the ontology, see https://github.com/datafoodconsortium/ontology/issues/215. + case prefix + "VariantCaracteristic": + result = this.createVariantCharacteristic({ semanticId: "" }); + break; + case prefix + "VirtualPlace": result = this.createVirtualPlace({ semanticId: "" }); break; + case "http://www.w3.org/2002/07/owl#Ontology": + result = undefined; + break; + + case "http://www.w3.org/2002/07/owl#Class": + result = undefined; + break; + case "http://www.w3.org/2004/02/skos/core#Concept": result = new SKOSConcept({ connector: this.connector, semanticId: "" }); break; diff --git a/src/org/datafoodconsortium/connector/codegen/typescript/static/src/ConnectorImporterJsonldStreamDocumentLoader.ts b/src/org/datafoodconsortium/connector/codegen/typescript/static/src/ConnectorImporterJsonldStreamDocumentLoader.ts index a657ae1..22c0053 100644 --- a/src/org/datafoodconsortium/connector/codegen/typescript/static/src/ConnectorImporterJsonldStreamDocumentLoader.ts +++ b/src/org/datafoodconsortium/connector/codegen/typescript/static/src/ConnectorImporterJsonldStreamDocumentLoader.ts @@ -1,5 +1,5 @@ import context from "./context.js"; -const preloadUrl = "https://www.datafoodconsortium.org/wp-content/plugins/wordpress-context-jsonld/context_1.16.0.jsonld"; +const preloadUrl = "https://www.datafoodconsortium.org/wp-content/plugins/wordpress-context-jsonld/context_2.0.0.jsonld"; export class ConnectorImporterJsonldStreamDocumentLoader { diff --git a/src/org/datafoodconsortium/connector/codegen/typescript/static/src/IConnectorFactory.ts b/src/org/datafoodconsortium/connector/codegen/typescript/static/src/IConnectorFactory.ts index 5c3a972..5184de9 100644 --- a/src/org/datafoodconsortium/connector/codegen/typescript/static/src/IConnectorFactory.ts +++ b/src/org/datafoodconsortium/connector/codegen/typescript/static/src/IConnectorFactory.ts @@ -10,7 +10,7 @@ import IAllergenCharacteristic from "./IAllergenCharacteristic"; import ICatalog from "./ICatalog"; import ICatalogItem from "./ICatalogItem"; import ICustomerCategory from "./ICustomerCategory"; -import IEnterprise from "./IEnterprise"; +import IOrganization from "./IOrganization"; import INutrientCharacteristic from "./INutrientCharacteristic"; import IOffer from "./IOffer"; import IOrder from "./IOrder"; @@ -46,6 +46,19 @@ import IPlannedLocalTransformation from "./IPlannedLocalTransformation"; import IRealizedTransformation from "./IRealizedTransformation"; import ISocialMedia from "./ISocialMedia"; import IVirtualPlace from "./IVirtualPlace"; +import IProductOptionValue from "./IProductOptionValue"; +import IVariantCharacteristic from "./IVariantCharacteristic"; +import IProductOption from "./IProductOption"; +import IPlace from "./IPlace"; +import IStep from "./IStep"; +import IGeoJsonFeature from "./IGeoJsonFeature"; +import IRoute from "./IRoute"; +import IShipment from "./IShipment"; +import IVariant from "./IVariant"; +import ITemplateSaleSession from "./ITemplateSaleSession"; +import IPickUpStep from "./IPickUpStep"; +import IDeliveryStep from "./IDeliveryStep"; +import ICertification from "./ICertification"; export default interface IConnectorFactory { createFromRdfDataset(dataset: DatasetExt): Semanticable | undefined; @@ -56,15 +69,17 @@ export default interface IConnectorFactory { createAllergenCharacteristic(parameters: IConnectorFactoryAllergenCharacteristicCreateParams): IAllergenCharacteristic; createCatalog(parameters: IConnectorFactoryCatalogCreateParams): ICatalog; createCatalogItem(parameters: IConnectorFactoryCatalogItemCreateParams): ICatalogItem; + createCertification(parameters: IConnectorFactoryCertificationCreateParams): ICertification; createCustomerCategory(parameters: IConnectorFactoryCustomerCategoryCreateParams): ICustomerCategory; createDeliveryOption(parameters: IConnectorFactoryDeliveryOptionCreateParams): IDeliveryOption; - createEnterprise(parameters: IConnectorFactoryEnterpriseCreateParams): IEnterprise; + createDeliveryStep(parameters: IConnectorFactoryDeliveryStepCreateParams): IDeliveryStep; createLocalizedProduct(parameters: IConnectorFactoryLocalizedProductCreateParams): ILocalizedProduct; createNutrientCharacteristic(parameters: IConnectorFactoryNutrientCharacteristicCreateParams): INutrientCharacteristic; createOffer(parameters: IConnectorFactoryOfferCreateParams): IOffer; createOpeningHoursSpecification(parameters: IConnectorFactoryOpeningHoursSpecificationCreateParams): IOpeningHoursSpecification; createOrder(parameters: IConnectorFactoryOrderCreateParams): IOrder; createOrderLine(parameters: IConnectorFactoryOrderLineCreateParams): IOrderLine; + createOrganization(parameters: IConnectorFactoryOrganizationCreateParams): IOrganization; createPaymentMethod(parameters: IConnectorFactoryPaymentMethodCreateParams): IPaymentMethod; createPerson(parameters: IConnectorFactoryPersonCreateParams): IPerson; createPhoneNumber(parameters: IConnectorFactoryPhoneNumberCreateParams): IPhoneNumber; @@ -72,6 +87,7 @@ export default interface IConnectorFactory { createPhysicalPlace(parameters: IConnectorFactoryPhysicalPlaceCreateParams): IPhysicalPlace; createPhysicalProduct(parameters: IConnectorFactoryPhysicalProductCreateParams): IPhysicalProduct; createPickupOption(parameters: IConnectorFactoryPickupOptionCreateParams): IPickupOption; + createPickUpStep(parameters: IConnectorFactoryPickUpStepCreateParams): IPickUpStep; createPlannedConsumptionFlow(parameters: IConnectorFactoryPlannedConsumptionFlowCreateParams): IPlannedConsumptionFlow; createPlannedLocalConsumptionFlow(parameters: IConnectorFactoryPlannedLocalConsumptionFlowCreateParams): IPlannedLocalConsumptionFlow; createPlannedLocalProductionFlow(parameters: IConnectorFactoryPlannedLocalProductionFlowCreateParams): IPlannedLocalProductionFlow; @@ -80,16 +96,22 @@ export default interface IConnectorFactory { createPlannedTransformation(parameters: IConnectorFactoryPlannedTransformationCreateParams): IPlannedTransformation; createPrice(parameters: IConnectorFactoryPriceCreateParams): IPrice; createProductBatch(parameters: IConnectorFactoryProductBatchCreateParams): IProductBatch; + createProductOption(parameters: IConnectorFactoryProductOptionCreateParams): IProductOption; + createProductOptionValue(parameters: IConnectorFactoryProductOptionValueCreateParams): IProductOptionValue; createQuantity(parameters: IConnectorFactoryQuantityCreateParams): IQuantity; createRealizedConsumptionFlow(parameters: IConnectorFactoryRealizedConsumptionFlowCreateParams): IRealizedConsumptionFlow; createRealizedProductionFlow(parameters: IConnectorFactoryRealizedProductionFlowCreateParams): IRealizedProductionFlow; createRealizedTransformation(parameters: IConnectorFactoryRealizedTransformationCreateParams): IRealizedTransformation; createRealStock(parameters: IConnectorFactoryRealStockCreateParams): IRealStock; + createRoute(parameters: IConnectorFactoryRouteCreateParams): IRoute; createSaleSession(parameters: IConnectorFactorySaleSessionCreateParams): ISaleSession; createSocialMedia(parameters: IConnectorFactorySocialMediaCreateParams): ISocialMedia; createSuppliedProduct(parameters: IConnectorFactorySuppliedProductCreateParams): ISuppliedProduct; createTechnicalProduct(parameters: IConnectorFactoryTechnicalProductCreateParams): ITechnicalProduct; + createTemplateSaleSession(parameters: IConnectorFactoryTemplateSaleSessionCreateParams): ITemplateSaleSession; createTheoreticalStock(parameters: IConnectorFactoryTheoreticalStockCreateParams): ITheoreticalStock; + createVariant(parameters: IConnectorFactoryVariantCreateParams): IVariant; + createVariantCharacteristic(parameters: IConnectorFactoryVariantCharacteristicCreateParams): IVariantCharacteristic; createVirtualPlace(parameters: IConnectorFactoryVirtualPlaceCreateParams): IVirtualPlace; } @@ -97,15 +119,17 @@ export type IConnectorFactoryAddressCreateParams = IConnectorFactoryCreateParams export type IConnectorFactoryAllergenCharacteristicCreateParams = IConnectorFactoryCreateParamsBlankNode & AllergenCharacteristicCreateParams; export type IConnectorFactoryCatalogCreateParams = IConnectorFactoryCreateParams & CatalogCreateParams; export type IConnectorFactoryCatalogItemCreateParams = IConnectorFactoryCreateParams & CatalogItemCreateParams; +export type IConnectorFactoryCertificationCreateParams = IConnectorFactoryCreateParams & CertificationCreateParams; export type IConnectorFactoryCustomerCategoryCreateParams = IConnectorFactoryCreateParams & CustomerCategoryCreateParams; export type IConnectorFactoryDeliveryOptionCreateParams = IConnectorFactoryCreateParams & DeliveryOptionCreateParams; -export type IConnectorFactoryEnterpriseCreateParams = IConnectorFactoryCreateParams & EnterpriseCreateParams; +export type IConnectorFactoryDeliveryStepCreateParams = IConnectorFactoryCreateParams & DeliveryStepCreateParams; export type IConnectorFactoryLocalizedProductCreateParams = IConnectorFactoryCreateParams & LocalizedProductCreateParams; export type IConnectorFactoryNutrientCharacteristicCreateParams = IConnectorFactoryCreateParams & NutrientCharacteristicCreateParams; export type IConnectorFactoryOfferCreateParams = IConnectorFactoryCreateParams & OfferCreateParams; export type IConnectorFactoryOpeningHoursSpecificationCreateParams = IConnectorFactoryCreateParams & OpeningHoursSpecificationCreateParams; export type IConnectorFactoryOrderCreateParams = IConnectorFactoryCreateParams & OrderCreateParams; export type IConnectorFactoryOrderLineCreateParams = IConnectorFactoryCreateParams & OrderLineCreateParams; +export type IConnectorFactoryOrganizationCreateParams = IConnectorFactoryCreateParams & OrganizationCreateParams; export type IConnectorFactoryPaymentMethodCreateParams = IConnectorFactoryCreateParams & PaymentMethodCreateParams; export type IConnectorFactoryPersonCreateParams = IConnectorFactoryCreateParams & PersonCreateParams; export type IConnectorFactoryPhoneNumberCreateParams = IConnectorFactoryCreateParams & PhoneNumberCreateParams; @@ -113,6 +137,7 @@ export type IConnectorFactoryPhysicalCharacteristicCreateParams = IConnectorFact export type IConnectorFactoryPhysicalPlaceCreateParams = IConnectorFactoryCreateParams & PhysicalPlaceCreateParams; export type IConnectorFactoryPhysicalProductCreateParams = IConnectorFactoryCreateParams & PhysicalProductCreateParams; export type IConnectorFactoryPickupOptionCreateParams = IConnectorFactoryCreateParams & PickupOptionCreateParams; +export type IConnectorFactoryPickUpStepCreateParams = IConnectorFactoryCreateParams & PickUpStepCreateParams; export type IConnectorFactoryPlannedConsumptionFlowCreateParams = IConnectorFactoryCreateParams & PlannedConsumptionFlowCreateParams; export type IConnectorFactoryPlannedLocalConsumptionFlowCreateParams = IConnectorFactoryCreateParams & PlannedLocalConsumptionFlowCreateParams; export type IConnectorFactoryPlannedLocalProductionFlowCreateParams = IConnectorFactoryCreateParams & PlannedLocalProductionFlowCreateParams; @@ -121,16 +146,22 @@ export type IConnectorFactoryPlannedProductionFlowCreateParams = IConnectorFacto export type IConnectorFactoryPlannedTransformationCreateParams = IConnectorFactoryCreateParams & PlannedTransformationCreateParams; export type IConnectorFactoryPriceCreateParams = IConnectorFactoryCreateParamsBlankNode & PriceCreateParams; export type IConnectorFactoryProductBatchCreateParams = IConnectorFactoryCreateParams & ProductBatchCreateParams; +export type IConnectorFactoryProductOptionCreateParams = IConnectorFactoryCreateParams & ProductOptionCreateParams; +export type IConnectorFactoryProductOptionValueCreateParams = IConnectorFactoryCreateParams & ProductOptionValueCreateParams; export type IConnectorFactoryQuantityCreateParams = IConnectorFactoryCreateParamsBlankNode & QuantityCreateParams; export type IConnectorFactoryRealizedConsumptionFlowCreateParams = IConnectorFactoryCreateParams & RealizedConsumptionFlowCreateParams; export type IConnectorFactoryRealizedProductionFlowCreateParams = IConnectorFactoryCreateParams & RealizedProductionFlowCreateParams; export type IConnectorFactoryRealizedTransformationCreateParams = IConnectorFactoryCreateParams & RealizedTransformationCreateParams; export type IConnectorFactoryRealStockCreateParams = IConnectorFactoryCreateParams & RealStockCreateParams; +export type IConnectorFactoryRouteCreateParams = IConnectorFactoryCreateParams & RouteCreateParams; export type IConnectorFactorySaleSessionCreateParams = IConnectorFactoryCreateParams & SaleSessionCreateParams; export type IConnectorFactorySocialMediaCreateParams = IConnectorFactoryCreateParams & SocialMediaCreateParams; export type IConnectorFactorySuppliedProductCreateParams = IConnectorFactoryCreateParams & SuppliedProductCreateParams; export type IConnectorFactoryTechnicalProductCreateParams = IConnectorFactoryCreateParams & TechnicalProductCreateParams; +export type IConnectorFactoryTemplateSaleSessionCreateParams = IConnectorFactoryCreateParams & TemplateSaleSessionCreateParams; export type IConnectorFactoryTheoreticalStockCreateParams = IConnectorFactoryCreateParams & TheoreticalStockCreateParams; +export type IConnectorFactoryVariantCreateParams = IConnectorFactoryCreateParams & VariantCreateParams; +export type IConnectorFactoryVariantCharacteristicCreateParams = IConnectorFactoryCreateParams & VariantCharacteristicCreateParams; export type IConnectorFactoryVirtualPlaceCreateParams = IConnectorFactoryCreateParams & VirtualPlaceCreateParams; export interface IConnectorFactoryCreateParamsBlankNode { @@ -160,7 +191,7 @@ export interface AllergenCharacteristicCreateParams { } export interface CatalogCreateParams { - maintainers?: IEnterprise[]; + maintainers?: IOrganization[]; items?: ICatalogItem[]; } @@ -172,6 +203,15 @@ export interface CatalogItemCreateParams { catalogs?: ICatalog[]; } +export interface CertificationCreateParams { + name?: string, + description?: string, + certificationReferences?: string[], + certificationScores?: string[], + operatorIds?: string[], + certifiedOrganizations?: IOrganization[], +} + export interface CustomerCategoryCreateParams { description?: string; } @@ -190,19 +230,14 @@ export interface DeliveryOptionCreateParams { endDate?: string; } -export interface EnterpriseCreateParams { - name?: string; - localizations?: IAddress[]; - description?: string; - vatNumber?: string; - customerCategories?: ICustomerCategory[]; - catalogs?: ICatalog[]; - catalogItems?: ICatalogItem[]; - suppliedProducts?: ISuppliedProduct[]; - technicalProducts?: ITechnicalProduct[]; - mainContact?: IPerson; - logo?: string; - affiliates?: IPerson[]; +export interface DeliveryStepCreateParams { + name?: string, + description?: string, + routes?: IRoute[], + deliveredShipments?: IShipment[], + pickedUpShipments?: IShipment[], + duration?: string, + arrivalDate?: string, } export interface LocalizedProductCreateParams { @@ -257,6 +292,20 @@ export interface OrderLineCreateParams { order?: IOrder; } +export interface OrganizationCreateParams { + name?: string; + localizations?: IAddress[]; + description?: string; + vatNumber?: string; + customerCategories?: ICustomerCategory[]; + catalogs?: ICatalog[]; + catalogItems?: ICatalogItem[]; + suppliedProducts?: ISuppliedProduct[]; + technicalProducts?: ITechnicalProduct[]; + mainContact?: IPerson; + logo?: string; +} + export interface PaymentMethodCreateParams { name?: string; description?: string; @@ -269,7 +318,7 @@ export interface PersonCreateParams { firstName?: string; lastName?: string; localizations?: IAddress[]; - organizations?: IEnterprise[]; + organizations?: IOrganization[]; logo?: string; } @@ -320,6 +369,16 @@ export interface PickupOptionCreateParams { endDate?: string; } +export interface PickUpStepCreateParams { + name?: string, + description?: string, + routes?: IRoute[], + deliveredShipments?: IShipment[], + pickedUpShipments?: IShipment[], + duration?: string, + arrivalDate?: string, +} + export interface PlannedConsumptionFlowCreateParams { quantity?: IQuantity; transformation?: IPlannedTransformation; @@ -376,6 +435,19 @@ export interface ProductBatchCreateParams { productionDate?: string; } +export interface ProductOptionCreateParams { + name?: string, + description?: string, + date?: string, + referenceProductionOptionValue?: IProductOptionValue[], +} + +export interface ProductOptionValueCreateParams { + name?: string, + description?: string, + date?: string, +} + export interface QuantityCreateParams { unit?: ISKOSConcept; value?: number; @@ -409,6 +481,13 @@ export interface RealStockCreateParams { productBatches?: IProductBatch[]; } +export interface RouteCreateParams { + name?: string, + description?: string, + steps?: IStep[], + features?: IGeoJsonFeature[], +} + export interface SaleSessionCreateParams { beginDate?: string; endDate?: string; @@ -463,6 +542,11 @@ export interface TechnicalProductCreateParams { images?: string[]; } +export interface TemplateSaleSessionCreateParams { + hostingPlaces?: IPlace[], + organizations?: IOrganization[], +} + export interface TheoreticalStockCreateParams { localizedProduct?: ILocalizedProduct; quantity?: IQuantity; @@ -470,6 +554,36 @@ export interface TheoreticalStockCreateParams { availabilityDate?: string; } +export interface VariantCreateParams { + name?: string, + description?: string, + productType?: ISKOSConcept, + quantity?: IQuantity, + alcoholPercentage?: number, + lifetime?: string, + claims?: ISKOSConcept[], + usageOrStorageConditions?: string, + allergenCharacteristics?: IAllergenCharacteristic[], + nutrientCharacteristics?: INutrientCharacteristic[], + physicalCharacteristics?: IPhysicalCharacteristic[], + geographicalOrigin?: ISKOSConcept, + catalogItems?: ICatalogItem[], + certifications?: ISKOSConcept[], + natureOrigin?: ISKOSConcept[], + partOrigin?: ISKOSConcept[], + images?: string[], + variants?: IDefinedProduct[], + isVariantOf?: IDefinedProduct[], + variantCharacteristics?: IVariantCharacteristic[], + referenceProductOptions?: IProductOption[], +} + +export interface VariantCharacteristicCreateParams { + name?: string, + description?: string, + date?: string, + productOption?: IProductOption, +} export interface VirtualPlaceCreateParams { name?: string; description?: string; diff --git a/src/org/datafoodconsortium/connector/codegen/typescript/static/src/context.ts b/src/org/datafoodconsortium/connector/codegen/typescript/static/src/context.ts index 9ea3fa9..caa5ecd 100644 --- a/src/org/datafoodconsortium/connector/codegen/typescript/static/src/context.ts +++ b/src/org/datafoodconsortium/connector/codegen/typescript/static/src/context.ts @@ -1,14 +1,14 @@ export default { "rdfs": "http://www.w3.org/2000/01/rdf-schema#", "skos": "http://www.w3.org/2004/02/skos/core#", - "dfc": "https://github.com/datafoodconsortium/ontology/releases/latest/download/DFC_FullModel.owl#", + "dfc": "http://w3id.org/dfc/ontology/DFC_FullModel.owl#", "dc": "http://purl.org/dc/elements/1.1/#", - "dfc-b": "https://github.com/datafoodconsortium/ontology/releases/latest/download/DFC_BusinessOntology.owl#", - "dfc-t": "https://github.com/datafoodconsortium/ontology/releases/latest/download/DFC_TechnicalOntology.owl#", - "dfc-m": "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/measures.rdf#", - "dfc-pt": "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#", - "dfc-f": "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#", - "dfc-v": "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/vocabulary.rdf#", + "dfc-b": "http://w3id.org/dfc/ontology/v2.0.0/src/DFC_BusinessOntology.owl#", + "dfc-t": "http://w3id.org/dfc/ontology/v2.0.0/src/DFC_TechnicalOntology.owl#", + "dfc-m": "http://w3id.org/dfc/taxonomies/v2.0.0/measures.rdf#", + "dfc-pt": "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#", + "dfc-f": "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#", + "dfc-v": "http://w3id.org/dfc/taxonomies/v2.0.0/vocabulary.rdf#", "ontosec": "http://www.semanticweb.org/ontologies/2008/11/OntologySecurity.owl#", "dfc-b:DFC_BusinessOntology_ObjectProperty": { "@type": "@id" @@ -40,6 +40,9 @@ export default { "dfc-b:certificateOf": { "@type": "@id" }, + "dfc-b:certifies": { + "@type": "@id" + }, "dfc-b:characteristicOf": { "@type": "@id" }, @@ -88,6 +91,9 @@ export default { "dfc-b:deliveredAt": { "@type": "@id" }, + "dfc-b:delivery": { + "@type": "@id" + }, "dfc-b:endsAt": { "@type": "@id" }, @@ -139,6 +145,9 @@ export default { "dfc-b:hasFulfilmentStatus": { "@type": "@id" }, + "dfc-b:hasGeoJsonFeature": { + "@type": "@id" + }, "dfc-b:hasGeographicalOrigin": { "@type": "@id" }, @@ -157,6 +166,9 @@ export default { "dfc-b:hasMainContact": { "@type": "@id" }, + "dfc-b:hasMember": { + "@type": "@id" + }, "dfc-b:hasNatureOrigin": { "@type": "@id" }, @@ -205,7 +217,10 @@ export default { "dfc-b:hasPrice": { "@type": "@id" }, - "dfc-b:hasProcess": { + "dfc-b:hasProductOption": { + "@type": "@id" + }, + "dfc-b:hasProductOptionValue": { "@type": "@id" }, "dfc-b:hasQuantity": { @@ -214,15 +229,27 @@ export default { "dfc-b:hasReference": { "@type": "@id" }, + "dfc-b:hasReferenceProductOption": { + "@type": "@id" + }, + "dfc-b:hasReferenceProductOptionValue": { + "@type": "@id" + }, "dfc-b:hasSocialMedia": { "@type": "@id" }, "dfc-b:hasStatus": { "@type": "@id" }, + "dfc-b:hasStep": { + "@type": "@id" + }, "dfc-b:hasTemperature": { "@type": "@id" }, + "dfc-b:hasTemplateSaleSession": { + "@type": "@id" + }, "dfc-b:hasTransformationType": { "@type": "@id" }, @@ -235,6 +262,9 @@ export default { "dfc-b:hasVariant": { "@type": "@id" }, + "dfc-b:hasVariantCaracteristic": { + "@type": "@id" + }, "dfc-b:holds": { "@type": "@id" }, @@ -262,12 +292,18 @@ export default { "dfc-b:isAvailableDuring": { "@type": "@id" }, + "dfc-b:isCertifiedBy": { + "@type": "@id" + }, "dfc-b:isFulfilledBy": { "@type": "@id" }, "dfc-b:isIngredientOf": { "@type": "@id" }, + "dfc-b:isMemberOf": { + "@type": "@id" + }, "dfc-b:isOpenDuring": { "@type": "@id" }, @@ -277,9 +313,15 @@ export default { "dfc-b:isShippedIn": { "@type": "@id" }, + "dfc-b:isStepOf": { + "@type": "@id" + }, "dfc-b:isTemperatureOf": { "@type": "@id" }, + "dfc-b:isTemplateSaleSessionOf": { + "@type": "@id" + }, "dfc-b:isVariantOf": { "@type": "@id" }, @@ -364,6 +406,9 @@ export default { "dfc-b:physicalCharacteristicOf": { "@type": "@id" }, + "dfc-b:pickUp": { + "@type": "@id" + }, "dfc-b:pickedUpAt": { "@type": "@id" }, @@ -472,6 +517,12 @@ export default { "dfc-b:typeOf": { "@type": "@id" }, + "dfc-b:useVehicle": { + "@type": "@id" + }, + "dfc-b:usedInRoute": { + "@type": "@id" + }, "dfc-b:uses": { "@type": "@id" }, diff --git a/src/org/datafoodconsortium/connector/codegen/typescript/static/test/Address.test.js b/src/org/datafoodconsortium/connector/codegen/typescript/static/test/Address.test.js index f10e0d0..75784bb 100644 --- a/src/org/datafoodconsortium/connector/codegen/typescript/static/test/Address.test.js +++ b/src/org/datafoodconsortium/connector/codegen/typescript/static/test/Address.test.js @@ -18,7 +18,7 @@ const address = connector.createAddress({ region: "region" }); -const json = '{"@context":"https://www.datafoodconsortium.org/wp-content/plugins/wordpress-context-jsonld/context_1.16.0.jsonld","@id":"http://myplatform.com/address/address1","@type":"dfc-b:Address","dfc-b:hasCity":"Brussels","dfc-b:hasCountry":"http://publications.europa.eu/resource/authority/country/FRA","dfc-b:hasPostalCode":"00001","dfc-b:hasStreet":"1, place or Europe","dfc-b:latitude":"0.123","dfc-b:longitude":"3.456","dfc-b:region":"region"}'; +const json = '{"@context":"https://www.datafoodconsortium.org/wp-content/plugins/wordpress-context-jsonld/context_2.0.0.jsonld","@id":"http://myplatform.com/address/address1","@type":"dfc-b:Address","dfc-b:hasCity":"Brussels","dfc-b:hasCountry":"http://publications.europa.eu/resource/authority/country/FRA","dfc-b:hasPostalCode":"00001","dfc-b:hasStreet":"1, place or Europe","dfc-b:latitude":"0.123","dfc-b:longitude":"3.456","dfc-b:region":"region"}'; test('Address:import', async () => { const imported = await connector.import(json); diff --git a/src/org/datafoodconsortium/connector/codegen/typescript/static/test/AllergenCharacteristic.test.js b/src/org/datafoodconsortium/connector/codegen/typescript/static/test/AllergenCharacteristic.test.js index d8a83eb..565dbb8 100644 --- a/src/org/datafoodconsortium/connector/codegen/typescript/static/test/AllergenCharacteristic.test.js +++ b/src/org/datafoodconsortium/connector/codegen/typescript/static/test/AllergenCharacteristic.test.js @@ -16,7 +16,7 @@ const allergenCharacteristic = connector.createAllergenCharacteristic({ allergenDimension: allergenDimension }); -const json = `{"@context":"https://www.datafoodconsortium.org/wp-content/plugins/wordpress-context-jsonld/context_1.16.0.jsonld","@id":"_:b1","@type":"dfc-b:AllergenCharacteristic","dfc-b:hasAllergenDimension":"dfc-m:Peanuts","dfc-b:hasUnit":"dfc-m:Kilogram","dfc-b:value":"1"}`; +const json = `{"@context":"https://www.datafoodconsortium.org/wp-content/plugins/wordpress-context-jsonld/context_2.0.0.jsonld","@id":"_:b1","@type":"dfc-b:AllergenCharacteristic","dfc-b:hasAllergenDimension":"dfc-m:Peanuts","dfc-b:hasUnit":"dfc-m:Kilogram","dfc-b:value":"1"}`; test('AllergenCharacteristic:import', async () => { const imported = await connector.import(json); diff --git a/src/org/datafoodconsortium/connector/codegen/typescript/static/test/Catalog.test.js b/src/org/datafoodconsortium/connector/codegen/typescript/static/test/Catalog.test.js index 1469939..a26279f 100644 --- a/src/org/datafoodconsortium/connector/codegen/typescript/static/test/Catalog.test.js +++ b/src/org/datafoodconsortium/connector/codegen/typescript/static/test/Catalog.test.js @@ -4,14 +4,14 @@ import Connector from "../lib/Connector.js"; const connector = new Connector(); -const json = `{"@context":"https://www.datafoodconsortium.org/wp-content/plugins/wordpress-context-jsonld/context_1.16.0.jsonld","@id":"http://myplatform.com/catalog1","@type":"dfc-b:Catalog","dfc-b:lists":"http://myplatform.com/catalogItem1","dfc-b:maintainedBy":"http://myplatform.com/enterprise1"}`; +const json = `{"@context":"https://www.datafoodconsortium.org/wp-content/plugins/wordpress-context-jsonld/context_2.0.0.jsonld","@id":"http://myplatform.com/catalog1","@type":"dfc-b:Catalog","dfc-b:lists":"http://myplatform.com/catalogItem1","dfc-b:maintainedBy":"http://myplatform.com/organization1"}`; -const enterprise = connector.createEnterprise({ - semanticId: "http://myplatform.com/enterprise1" +const organization = connector.createOrganization({ + semanticId: "http://myplatform.com/organization1" }); -const enterprise2 = connector.createEnterprise({ - semanticId: "http://myplatform.com/enterprise2" +const organization2 = connector.createOrganization({ + semanticId: "http://myplatform.com/organization2" }); const catalogItem = connector.createCatalogItem({ @@ -24,7 +24,7 @@ const catalogItem2 = connector.createCatalogItem({ const catalog = connector.createCatalog({ semanticId: "http://myplatform.com/catalog1", - maintainers: [enterprise], + maintainers: [organization], items: [catalogItem] }); @@ -47,7 +47,7 @@ test('Catalog:getSemanticId', () => { test('Catalog:getMaintainers', async () => { const maintainers = await catalog.getMaintainers(); expect.strictEqual(maintainers.length, 1); - expect.strictEqual(maintainers[0].equals(enterprise), true); + expect.strictEqual(maintainers[0].equals(organization), true); }); test('Catalog:getItems', async () => { @@ -57,11 +57,11 @@ test('Catalog:getItems', async () => { }); test('Catalog:addMaintainer', async () => { - catalog.addMaintainer(enterprise2); + catalog.addMaintainer(organization2); const maintainers = await catalog.getMaintainers(); expect.strictEqual(maintainers.length, 2); - expect.strictEqual(maintainers[0].equals(enterprise), true); - expect.strictEqual(maintainers[1].equals(enterprise2), true); + expect.strictEqual(maintainers[0].equals(organization), true); + expect.strictEqual(maintainers[1].equals(organization2), true); }); test('Catalog:addItem', async () => { @@ -88,7 +88,7 @@ test('Catalog:removeMaintainer', async () => { catalog.removeMaintainer(enterprise); const maintainers = await catalog.getMaintainers(); expect.strictEqual(maintainers.length, 1); - expect.strictEqual(maintainers[0].equals(enterprise2), true); + expect.strictEqual(maintainers[0].equals(organization2), true); }); test('Catalog:removeItem', async () => { diff --git a/src/org/datafoodconsortium/connector/codegen/typescript/static/test/CatalogItem.test.js b/src/org/datafoodconsortium/connector/codegen/typescript/static/test/CatalogItem.test.js index 2259564..521c208 100644 --- a/src/org/datafoodconsortium/connector/codegen/typescript/static/test/CatalogItem.test.js +++ b/src/org/datafoodconsortium/connector/codegen/typescript/static/test/CatalogItem.test.js @@ -4,7 +4,7 @@ import Connector from "../lib/Connector.js"; const connector = new Connector(); -const json = `{"@context":"https://www.datafoodconsortium.org/wp-content/plugins/wordpress-context-jsonld/context_1.16.0.jsonld","@id":"http://myplatform.com/catalogItem1","@type":"dfc-b:CatalogItem","dfc-b:listedIn":"http://myplatform.com/catalog1","dfc-b:offeredThrough":"http://myplatform.com/offer1","dfc-b:references":"http://myplatform.com/suppliedProduct1","dfc-b:sku":"sku","dfc-b:stockLimitation":"6.32"}`; +const json = `{"@context":"https://www.datafoodconsortium.org/wp-content/plugins/wordpress-context-jsonld/context_2.0.0.jsonld","@id":"http://myplatform.com/catalogItem1","@type":"dfc-b:CatalogItem","dfc-b:listedIn":"http://myplatform.com/catalog1","dfc-b:offeredThrough":"http://myplatform.com/offer1","dfc-b:references":"http://myplatform.com/suppliedProduct1","dfc-b:sku":"sku","dfc-b:stockLimitation":"6.32"}`; const suppliedProduct = connector.createSuppliedProduct({ semanticId: "http://myplatform.com/suppliedProduct1" diff --git a/src/org/datafoodconsortium/connector/codegen/typescript/static/test/Certification.test.js b/src/org/datafoodconsortium/connector/codegen/typescript/static/test/Certification.test.js new file mode 100644 index 0000000..3dc894b --- /dev/null +++ b/src/org/datafoodconsortium/connector/codegen/typescript/static/test/Certification.test.js @@ -0,0 +1,31 @@ +import expect from 'node:assert'; +import { test } from 'node:test'; +import Connector from "../lib/Connector.js"; + +const connector = new Connector(); + +const json = `{"@context":"https://www.datafoodconsortium.org/wp-content/plugins/wordpress-context-jsonld/context_2.0.0.jsonld","@id":"http://myplatform.com/certification","@type":"dfc-b:Certfication","dfc-b:certiferReference":"certificationReference","dfc-b:certificationScore":"certificationScore","dfc-b:certifies":"http://myplatform.com/organization","dfc-b:hasDescription":"description","dfc-b:name":"name","dfc-b:operatorId":"operatorId"}`; + +const organization = connector.createOrganization({ semanticId: "http://myplatform.com/organization" }); + +const certification = connector.createCertification({ + semanticId: "http://myplatform.com/certification", + name: "name", + description: "description", + certificationReferences: ["certificationReference"], + certificationScores: ["certificationScore"], + operatorIds: ["operatorId"], + certifiedOrganizations: [organization], +}); + +test('Certification:import', async () => { + const imported = await connector.import(json); + const importedObject = imported[0]; + expect.strictEqual(imported.length, 1); + expect.strictEqual(importedObject.equals(certification), true); +}); + +test('Certification:export', async () => { + const serialized = await connector.export([certification]); + expect.strictEqual(serialized, json); +}); \ No newline at end of file diff --git a/src/org/datafoodconsortium/connector/codegen/typescript/static/test/Connector.test.js b/src/org/datafoodconsortium/connector/codegen/typescript/static/test/Connector.test.js index ed132e9..3023238 100644 --- a/src/org/datafoodconsortium/connector/codegen/typescript/static/test/Connector.test.js +++ b/src/org/datafoodconsortium/connector/codegen/typescript/static/test/Connector.test.js @@ -15,7 +15,7 @@ class Loader { } const importer = new ConnectorImporterJsonldStream({ documentLoader: new Loader() }); -const data = `{"@context":"https://www.datafoodconsortium.org/wp-content/plugins/wordpress-context-jsonld/context_1.16.0.jsonld","@graph":[{"@id":"_:b1","@type":"dfc-b:Price","dfc-b:VATrate":"8","dfc-b:hasUnit":"dfc-m:Euro","dfc-b:value":"2.54"},{"@id":"http://myplatform.com/offer1","@type":"dfc-b:Offer","dfc-b:offeredItem":{"@id":"http://myplatform.com/suppliedProduct1"},"dfc-b:offeredTo":{"@id":"http://myplatform.com/customerCategory1"},"dfc-b:price":{"@id":"_:b1"},"dfc-b:stockLimitation":"4.21"}]}`; +const data = `{"@context":"https://www.datafoodconsortium.org/wp-content/plugins/wordpress-context-jsonld/context_2.0.0.jsonld","@graph":[{"@id":"_:b1","@type":"dfc-b:Price","dfc-b:VATrate":"8","dfc-b:hasUnit":"dfc-m:Euro","dfc-b:value":"2.54"},{"@id":"http://myplatform.com/offer1","@type":"dfc-b:Offer","dfc-b:offeredItem":{"@id":"http://myplatform.com/suppliedProduct1"},"dfc-b:offeredTo":{"@id":"http://myplatform.com/customerCategory1"},"dfc-b:price":{"@id":"_:b1"},"dfc-b:stockLimitation":"4.21"}]}`; test('Connector:test', async () => { expect.ok('Connector is OK', connector); diff --git a/src/org/datafoodconsortium/connector/codegen/typescript/static/test/CustomerCategory.test.js b/src/org/datafoodconsortium/connector/codegen/typescript/static/test/CustomerCategory.test.js index 8936013..7eae594 100644 --- a/src/org/datafoodconsortium/connector/codegen/typescript/static/test/CustomerCategory.test.js +++ b/src/org/datafoodconsortium/connector/codegen/typescript/static/test/CustomerCategory.test.js @@ -10,7 +10,7 @@ const customerCategory = connector.createCustomerCategory({ description: "description" }) -const json = `{"@context":"https://www.datafoodconsortium.org/wp-content/plugins/wordpress-context-jsonld/context_1.16.0.jsonld","@id":"http://myplatform.com/customerCategory1","@type":"dfc-b:CustomerCategory","dfc-b:description":"description","dfc-b:name":"name"}`; +const json = `{"@context":"https://www.datafoodconsortium.org/wp-content/plugins/wordpress-context-jsonld/context_2.0.0.jsonld","@id":"http://myplatform.com/customerCategory1","@type":"dfc-b:CustomerCategory","dfc-b:description":"description","dfc-b:name":"name"}`; test('CustomerCategory:import', async () => { const imported = await connector.import(json); diff --git a/src/org/datafoodconsortium/connector/codegen/typescript/static/test/DeliveryOption.test.js b/src/org/datafoodconsortium/connector/codegen/typescript/static/test/DeliveryOption.test.js index 571736b..d5f2455 100644 --- a/src/org/datafoodconsortium/connector/codegen/typescript/static/test/DeliveryOption.test.js +++ b/src/org/datafoodconsortium/connector/codegen/typescript/static/test/DeliveryOption.test.js @@ -24,7 +24,7 @@ const deliveryOption = connector.createDeliveryOption({ endDate: new Date(2026, 5, 19).toDateString(), }); -const json = '{"@context":"https://www.datafoodconsortium.org/wp-content/plugins/wordpress-context-jsonld/context_1.16.0.jsonld","@graph":[{"@id":"_:b1","@type":"dfc-b:QuantitativeValue"},{"@id":"http://myplatform.com/deliveryOption","@type":"dfc-b:DeliveryOption","dfc-b:accessibilityInfo":"accessibilityInformation","dfc-b:deliveredAt":"http://myplatform.com/physicalPlace","dfc-b:deliveryConstraint":"deliveryConstraint","dfc-b:description":"description","dfc-b:endDate":"Fri Jun 19 2026","dfc-b:fee":"123","dfc-b:hasQuantity":"_:b1","dfc-b:name":"name","dfc-b:optionOf":"http://myplatform.com/saleSession","dfc-b:selectedBy":"http://myplatform.com/order","dfc-b:startDate":"Thu Jun 18 2026"}]}'; +const json = '{"@context":"https://www.datafoodconsortium.org/wp-content/plugins/wordpress-context-jsonld/context_2.0.0.jsonld","@graph":[{"@id":"_:b1","@type":"dfc-b:QuantitativeValue"},{"@id":"http://myplatform.com/deliveryOption","@type":"dfc-b:DeliveryOption","dfc-b:accessibilityInfo":"accessibilityInformation","dfc-b:deliveredAt":"http://myplatform.com/physicalPlace","dfc-b:deliveryConstraint":"deliveryConstraint","dfc-b:description":"description","dfc-b:endDate":"Fri Jun 19 2026","dfc-b:fee":"123","dfc-b:hasQuantity":"_:b1","dfc-b:name":"name","dfc-b:optionOf":"http://myplatform.com/saleSession","dfc-b:selectedBy":"http://myplatform.com/order","dfc-b:startDate":"Thu Jun 18 2026"}]}'; test('DeliveryOption:import', async () => { const imported = await connector.import(json); diff --git a/src/org/datafoodconsortium/connector/codegen/typescript/static/test/DeliveryStep.test.js b/src/org/datafoodconsortium/connector/codegen/typescript/static/test/DeliveryStep.test.js new file mode 100644 index 0000000..732478a --- /dev/null +++ b/src/org/datafoodconsortium/connector/codegen/typescript/static/test/DeliveryStep.test.js @@ -0,0 +1,32 @@ +import expect from 'node:assert'; +import { test } from 'node:test'; +import Connector from "../lib/Connector.js"; + +const connector = new Connector(); + +const json = `{"@context":"https://www.datafoodconsortium.org/wp-content/plugins/wordpress-context-jsonld/context_2.0.0.jsonld","@id":"http://myplatform.com/deliveryStep","@type":"dfc-b:DeliveryStep","dfc-b:arrivalDate":"arrivalDate","dfc-b:description":"description","dfc-b:duration":"duration","dfc-b:isStepOf":"http://myplatform.com/route","dfc-b:name":"name"}`; + +const route = connector.createRoute({ semanticId: "http://myplatform.com/route" }); + +const deliveryStep = connector.createDeliveryStep({ + semanticId: "http://myplatform.com/deliveryStep", + name: "name", + description: "description", + routes: [route], + deliveredShipments: [], + pickedUpShipments: [], + duration: "duration", + arrivalDate: "arrivalDate", +}); + +test('DeliveryStep:import', async () => { + const imported = await connector.import(json); + const importedObject = imported[0]; + expect.strictEqual(imported.length, 1); + expect.strictEqual(importedObject.equals(deliveryStep), true); +}); + +test('DeliveryStep:export', async () => { + const serialized = await connector.export([deliveryStep]); + expect.strictEqual(serialized, json); +}); \ No newline at end of file diff --git a/src/org/datafoodconsortium/connector/codegen/typescript/static/test/Enterprise.test.js b/src/org/datafoodconsortium/connector/codegen/typescript/static/test/Enterprise.test.js deleted file mode 100644 index 93bc4dd..0000000 --- a/src/org/datafoodconsortium/connector/codegen/typescript/static/test/Enterprise.test.js +++ /dev/null @@ -1,209 +0,0 @@ -import expect from 'node:assert'; -import { test } from 'node:test'; -import Connector from "../lib/Connector.js"; - -const connector = new Connector(); - -const address = connector.createAddress({ - semanticId: "http://myplatform.com/address1", - city: "Briouze" -}); - -const address2 = connector.createAddress({ semanticId: "http://myplatform.com/address2" }); -const customerCategory = connector.createCustomerCategory({ semanticId: "http://myplatform.com/customerCategory1" }); -const customerCategory2 = connector.createCustomerCategory({ semanticId: "http://myplatform.com/customerCategory2" }); -const suppliedProduct = connector.createSuppliedProduct({ semanticId: "http://myplatform.com/suppliedProduct1" }); -const technicalProduct = connector.createTechnicalProduct({ semanticId: "http://myplatform.com/technicalProduct" }); -const technicalProduct2 = connector.createTechnicalProduct({ semanticId: "http://myplatform.com/technicalProduct2" }); -const mainContact = connector.createPerson({ semanticId: "http://myplatform.com/mainContact" }); -const mainContact2 = connector.createPerson({ semanticId: "http://myplatform.com/mainContact2" }); -const affiliate1 = connector.createPerson({ semanticId: "http://myplatform.com/affiliate1" }) -const suppliedProduct2 = connector.createSuppliedProduct({ semanticId: "http://myplatform.com/suppliedProduct2" }); -const catalog = connector.createCatalog({ semanticId: "http://myplatform.com/catalog1" }); -const catalog2 = connector.createCatalog({ semanticId: "http://myplatform.com/catalog2" }); -const catalogItem = connector.createCatalogItem({ semanticId: "http://myplatform.com/catalogItem1" }); -const catalogItem2 = connector.createCatalogItem({ semanticId: "http://myplatform.com/catalogItem2" }); - -const enterprise = connector.createEnterprise({ - semanticId: "http://myplatform.com/enterprise1", - name: "name", - description: "description", - localizations: [address], - vatNumber: "vatNumber", - customerCategories: [customerCategory], - catalogs: [catalog], - catalogItems: [catalogItem], - suppliedProducts: [suppliedProduct], - technicalProducts: [technicalProduct], - mainContact, - logo: "logo", - affiliates: [affiliate1], -}); - -const json = `{"@context":"https://www.datafoodconsortium.org/wp-content/plugins/wordpress-context-jsonld/context_1.16.0.jsonld","@id":"http://myplatform.com/enterprise1","@type":"dfc-b:Enterprise","dfc-b:VATnumber":"vatNumber","dfc-b:affiliates":"http://myplatform.com/affiliate1","dfc-b:defines":"http://myplatform.com/customerCategory1","dfc-b:hasAddress":"http://myplatform.com/address1","dfc-b:hasDescription":"description","dfc-b:hasMainContact":"http://myplatform.com/mainContact","dfc-b:logo":"logo","dfc-b:maintains":"http://myplatform.com/catalog1","dfc-b:manages":"http://myplatform.com/catalogItem1","dfc-b:name":"name","dfc-b:proposes":"http://myplatform.com/technicalProduct","dfc-b:supplies":"http://myplatform.com/suppliedProduct1"}`; - -test('Enterprise:import', async () => { - const imported = await connector.import(json); - const importedEnterprise = imported[0]; - expect.strictEqual(imported.length, 1); - expect.strictEqual(importedEnterprise.equals(enterprise), true); -}); - -test('Enterprise:export', async () => { - const serialized = await connector.export([enterprise]); - expect.strictEqual(serialized, json); -}); - -test('Enterprise:getSemanticId', () => { - expect.strictEqual(enterprise.getSemanticId(), "http://myplatform.com/enterprise1"); -}); - -test('Enterprise:getName', () => { - expect.strictEqual(enterprise.getName(), "name"); -}); - -test('Enterprise:getDescription', () => { - expect.strictEqual(enterprise.getDescription(), "description"); -}); - -test('Enterprise:getLocalizations', async () => { - const localizations = await enterprise.getLocalizations(); - expect.strictEqual(localizations.length, 1); - expect.strictEqual(localizations[0].equals(address), true); -}); - -test('Enterprise:getVatNumber', () => { - expect.strictEqual(enterprise.getVatNumber(), "vatNumber"); -}); - -test('Enterprise:getCustomerCategories', async () => { - const customerCategories = await enterprise.getCustomerCategories(); - expect.strictEqual(customerCategories.length, 1); - expect.strictEqual(customerCategories[0].equals(customerCategory), true); -}); - -test('Enterprise:getSuppliedProducts', async () => { - const suppliedProducts = await enterprise.getSuppliedProducts(); - expect.strictEqual(suppliedProducts.length, 1); - expect.strictEqual(suppliedProducts[0].equals(suppliedProduct), true); -}); - -test('Enterprise:getProposedTechnicalProducts', async () => { - const technicalProducts = await enterprise.getProposedTechnicalProducts(); - expect.strictEqual(technicalProducts.length, 1); - expect.strictEqual(technicalProducts[0].equals(technicalProduct), true); -}); - -test('Enterprise:getMainContact', async () => { - expect.strictEqual(await enterprise.getMainContact(), mainContact); -}); - -test('Enterprise:getDescription', () => { - expect.strictEqual(enterprise.getLogo(), "logo"); -}); - -test('Enterprise:getMaintainedCatalogs', async () => { - const catalogs = await enterprise.getMaintainedCatalogs(); - expect.strictEqual(catalogs.length, 1); - expect.strictEqual(catalogs[0].equals(catalog), true); -}); - -test('Enterprise:getManagedCatalogItems', async () => { - const catalogItems = await enterprise.getManagedCatalogItems(); - expect.strictEqual(catalogItems.length, 1); - expect.strictEqual(catalogItems[0].equals(catalogItem), true); -}); - -test('Enterprise:setName', () => { - enterprise.setName("name2"); - expect.strictEqual(enterprise.getName(), "name2"); -}); - -test('Enterprise:setDescription', () => { - enterprise.setDescription("description2"); - expect.strictEqual(enterprise.getDescription(), "description2"); -}); - -test('Enterprise:addLocalization', async () => { - enterprise.addLocalization(address2); - const localizations = await enterprise.getLocalizations(); - expect.strictEqual(localizations.length, 2); - expect.strictEqual(localizations[1].equals(address2), true); -}); - -test('Enterprise:setVatNumber', () => { - enterprise.setVatNumber("vatNumber2") - expect.strictEqual(enterprise.getVatNumber(), "vatNumber2"); -}); - -test('Enterprise:addCustomerCategory', async () => { - enterprise.addCustomerCategory(customerCategory2); - const customerCategories = await enterprise.getCustomerCategories(); - expect.strictEqual(customerCategories.length, 2); - expect.strictEqual(customerCategories[1].equals(customerCategory2), true); -}); - -test('Enterprise:supplyProduct', async () => { - enterprise.supplyProduct(suppliedProduct2); - const suppliedProducts = await enterprise.getSuppliedProducts(); - expect.strictEqual(suppliedProducts.length, 2); - expect.strictEqual(suppliedProducts[0].equals(suppliedProduct), true); - expect.strictEqual(suppliedProducts[1].equals(suppliedProduct2), true); -}); - -test('Enterprise:proposeTechnicalProducts', async () => { - enterprise.proposeTechnicalProducts(technicalProduct2); - const technicalProducts = await enterprise.getProposedTechnicalProducts(); - expect.strictEqual(technicalProducts.length, 2); - expect.strictEqual(technicalProducts[0].equals(technicalProduct), true); - expect.strictEqual(technicalProducts[1].equals(technicalProduct2), true); -}); - -test('Enterprise:setMainContact', async () => { - enterprise.setMainContact(mainContact2) - expect.strictEqual(await enterprise.getMainContact(), mainContact2); -}); - -test('Enterprise:setLogo', () => { - enterprise.setLogo("logo2"); - expect.strictEqual(enterprise.getLogo(), "logo2"); -}); - -/* -test('Enterprise:unsupplyProduct', async () => { - enterprise.unsupplyProduct(suppliedProduct); - const suppliedProducts = await enterprise.getSuppliedProducts(); - expect.strictEqual(suppliedProducts.length, 1); - expect.strictEqual(suppliedProducts[0].equals(suppliedProduct2), true); -});*/ - -test('Enterprise:maintainCatalog', async () => { - enterprise.maintainCatalog(catalog2); - const catalogs = await enterprise.getMaintainedCatalogs(); - expect.strictEqual(catalogs.length, 2); - expect.strictEqual(catalogs[0].equals(catalog), true); - expect.strictEqual(catalogs[1].equals(catalog2), true); -}); - -/* -test('Enterprise:unmaintainCatalog', async () => { - enterprise.unmaintainCatalog(catalog); - const catalogs = await enterprise.getMaintainedCatalogs(); - expect(catalogs.length).strictEqual(); - expect.strictEqual(catalogs[0].equals(catalog2), true); -});*/ - -test('Enterprise:manageCatalogItem', async () => { - enterprise.manageCatalogItem(catalogItem2); - const catalogItems = await enterprise.getManagedCatalogItems(); - expect.strictEqual(catalogItems.length, 2); - expect.strictEqual(catalogItems[1].equals(catalogItem2), true); -}); - -/* -test('Enterprise:unmanageCatalogItem', async () => { - enterprise.unmanageCatalogItem(catalogItem); - const catalogItems = await enterprise.getManagedCatalogItems(); - expect.strictEqual(catalogItems.length, 1); - expect.strictEqual(catalogItems[0].equals(catalogItem2), true); -});*/ \ No newline at end of file diff --git a/src/org/datafoodconsortium/connector/codegen/typescript/static/test/LocalizedProduct.test.js b/src/org/datafoodconsortium/connector/codegen/typescript/static/test/LocalizedProduct.test.js index 2be528b..3c3394a 100644 --- a/src/org/datafoodconsortium/connector/codegen/typescript/static/test/LocalizedProduct.test.js +++ b/src/org/datafoodconsortium/connector/codegen/typescript/static/test/LocalizedProduct.test.js @@ -39,7 +39,7 @@ let localizedProduct = connector.createLocalizedProduct({ plannedLocalProductionFlows: [plannedLocalProductionFlow] }); -const json = `{"@context":"https://www.datafoodconsortium.org/wp-content/plugins/wordpress-context-jsonld/context_1.16.0.jsonld","@graph":[{"@id":"_:b1","@type":"dfc-b:QuantitativeValue","dfc-b:hasUnit":"dfc-m:Kilogram","dfc-b:value":"1.2"},{"@id":"http://myplatform.com/tomato","@type":"dfc-b:LocalizedProduct","dfc-b:constituedBy":"http://myplatform.com/theoreticalStock","dfc-b:consumedBy":"http://myplatform.com/plannedLocalConsumptionFlow","dfc-b:cost":"123","dfc-b:description":"description","dfc-b:hasQuantity":"_:b1","dfc-b:hasReference":"http://myplatform.com/suppliedProduct","dfc-b:image":["http://myplatform.com/image1","http://myplatform.com/image2"],"dfc-b:name":"name","dfc-b:producedBy":"http://myplatform.com/plannedLocalProductionFlow","dfc-b:representedBy":"http://myplatform.com/physicalProduct"}]}`; +const json = `{"@context":"https://www.datafoodconsortium.org/wp-content/plugins/wordpress-context-jsonld/context_2.0.0.jsonld","@graph":[{"@id":"_:b1","@type":"dfc-b:QuantitativeValue","dfc-b:hasUnit":"dfc-m:Kilogram","dfc-b:value":"1.2"},{"@id":"http://myplatform.com/tomato","@type":"dfc-b:LocalizedProduct","dfc-b:constituedBy":"http://myplatform.com/theoreticalStock","dfc-b:consumedBy":"http://myplatform.com/plannedLocalConsumptionFlow","dfc-b:cost":"123","dfc-b:description":"description","dfc-b:hasQuantity":"_:b1","dfc-b:hasReference":"http://myplatform.com/suppliedProduct","dfc-b:image":["http://myplatform.com/image1","http://myplatform.com/image2"],"dfc-b:name":"name","dfc-b:producedBy":"http://myplatform.com/plannedLocalProductionFlow","dfc-b:representedBy":"http://myplatform.com/physicalProduct"}]}`; test('LocalizedProduct:import', async () => { const importedAll = await connector.import(json); diff --git a/src/org/datafoodconsortium/connector/codegen/typescript/static/test/NutrientCharacteristic.test.js b/src/org/datafoodconsortium/connector/codegen/typescript/static/test/NutrientCharacteristic.test.js index ec6641c..e5cd347 100644 --- a/src/org/datafoodconsortium/connector/codegen/typescript/static/test/NutrientCharacteristic.test.js +++ b/src/org/datafoodconsortium/connector/codegen/typescript/static/test/NutrientCharacteristic.test.js @@ -20,7 +20,7 @@ const nutrientCharacteristic = connector.createNutrientCharacteristic({ nutrientDimension: nutrientDimension }); -const json = `{"@context":"https://www.datafoodconsortium.org/wp-content/plugins/wordpress-context-jsonld/context_1.16.0.jsonld","@id":"_:b1","@type":"dfc-b:NutrientCharacteristic","dfc-b:hasNutrientDimension":"dfc-m:Calcium","dfc-b:hasUnit":"dfc-m:Kilogram","dfc-b:value":"10"}`; +const json = `{"@context":"https://www.datafoodconsortium.org/wp-content/plugins/wordpress-context-jsonld/context_2.0.0.jsonld","@id":"_:b1","@type":"dfc-b:NutrientCharacteristic","dfc-b:hasNutrientDimension":"dfc-m:Calcium","dfc-b:hasUnit":"dfc-m:Kilogram","dfc-b:value":"10"}`; test('NutrientCharacteristic:import', async () => { const imported = await connector.import(json); diff --git a/src/org/datafoodconsortium/connector/codegen/typescript/static/test/Offer.test.js b/src/org/datafoodconsortium/connector/codegen/typescript/static/test/Offer.test.js index 018889e..b2e1efd 100644 --- a/src/org/datafoodconsortium/connector/codegen/typescript/static/test/Offer.test.js +++ b/src/org/datafoodconsortium/connector/codegen/typescript/static/test/Offer.test.js @@ -29,7 +29,7 @@ const offer = connector.createOffer({ stockLimitation: 4.21 }); -const json = `{"@context":"https://www.datafoodconsortium.org/wp-content/plugins/wordpress-context-jsonld/context_1.16.0.jsonld","@graph":[{"@id":"_:b1","@type":"dfc-b:Price","dfc-b:VATrate":"8","dfc-b:hasUnit":"dfc-m:Euro","dfc-b:value":"2.54"},{"@id":"http://myplatform.com/offer1","@type":"dfc-b:Offer","dfc-b:hasPrice":"_:b1","dfc-b:offeredItem":{"@id":"http://myplatform.com/suppliedProduct1"},"dfc-b:offeredTo":{"@id":"http://myplatform.com/customerCategory1"},"dfc-b:stockLimitation":"4.21"}]}`; +const json = `{"@context":"https://www.datafoodconsortium.org/wp-content/plugins/wordpress-context-jsonld/context_2.0.0.jsonld","@graph":[{"@id":"_:b1","@type":"dfc-b:Price","dfc-b:VATrate":"8","dfc-b:hasUnit":"dfc-m:Euro","dfc-b:value":"2.54"},{"@id":"http://myplatform.com/offer1","@type":"dfc-b:Offer","dfc-b:hasPrice":"_:b1","dfc-b:offeredItem":{"@id":"http://myplatform.com/suppliedProduct1"},"dfc-b:offeredTo":{"@id":"http://myplatform.com/customerCategory1"},"dfc-b:stockLimitation":"4.21"}]}`; test('Offer:import', async () => { const imported = await connector.import(json); diff --git a/src/org/datafoodconsortium/connector/codegen/typescript/static/test/OpeningHoursSpecification.test.js b/src/org/datafoodconsortium/connector/codegen/typescript/static/test/OpeningHoursSpecification.test.js index f0665a7..68d86eb 100644 --- a/src/org/datafoodconsortium/connector/codegen/typescript/static/test/OpeningHoursSpecification.test.js +++ b/src/org/datafoodconsortium/connector/codegen/typescript/static/test/OpeningHoursSpecification.test.js @@ -11,7 +11,7 @@ const openingHoursSpecification = connector.createOpeningHoursSpecification({ closes: "closes", }); -const json = '{"@context":"https://www.datafoodconsortium.org/wp-content/plugins/wordpress-context-jsonld/context_1.16.0.jsonld","@id":"http://myplatform.com/openingHoursSpecification","@type":"https://schema.org/OpeningHoursSpecification","https://schema.org/closes":"closes","https://schema.org/dayOfWeek":"dayOfWeek","https://schema.org/opens":"opens"}'; +const json = '{"@context":"https://www.datafoodconsortium.org/wp-content/plugins/wordpress-context-jsonld/context_2.0.0.jsonld","@id":"http://myplatform.com/openingHoursSpecification","@type":"https://schema.org/OpeningHoursSpecification","https://schema.org/closes":"closes","https://schema.org/dayOfWeek":"dayOfWeek","https://schema.org/opens":"opens"}'; test('OpeningHoursSpecification:import', async () => { const imported = await connector.import(json); diff --git a/src/org/datafoodconsortium/connector/codegen/typescript/static/test/Order.test.js b/src/org/datafoodconsortium/connector/codegen/typescript/static/test/Order.test.js index 353a6aa..1a8fe91 100644 --- a/src/org/datafoodconsortium/connector/codegen/typescript/static/test/Order.test.js +++ b/src/org/datafoodconsortium/connector/codegen/typescript/static/test/Order.test.js @@ -37,7 +37,7 @@ const order = connector.createOrder({ lines: [orderLine] }); -const json = `{"@context":"https://www.datafoodconsortium.org/wp-content/plugins/wordpress-context-jsonld/context_1.16.0.jsonld","@id":"http://myplatform.com/order1","@type":"dfc-b:Order","dfc-b:belongsTo":"http://myplatform.com/saleSession1","dfc-b:date":"date","dfc-b:hasPart":"http://myplatform.com/orderLine1","dfc-b:orderNumber":"0001","dfc-b:orderedBy":"http://myplatform.com/person1"}`; +const json = `{"@context":"https://www.datafoodconsortium.org/wp-content/plugins/wordpress-context-jsonld/context_2.0.0.jsonld","@id":"http://myplatform.com/order1","@type":"dfc-b:Order","dfc-b:belongsTo":"http://myplatform.com/saleSession1","dfc-b:date":"date","dfc-b:hasPart":"http://myplatform.com/orderLine1","dfc-b:orderNumber":"0001","dfc-b:orderedBy":"http://myplatform.com/person1"}`; test('Order:import', async () => { const imported = await connector.import(json); diff --git a/src/org/datafoodconsortium/connector/codegen/typescript/static/test/OrderLine.test.js b/src/org/datafoodconsortium/connector/codegen/typescript/static/test/OrderLine.test.js index dbfc4db..111f049 100644 --- a/src/org/datafoodconsortium/connector/codegen/typescript/static/test/OrderLine.test.js +++ b/src/org/datafoodconsortium/connector/codegen/typescript/static/test/OrderLine.test.js @@ -29,7 +29,7 @@ const orderLine = connector.createOrderLine({ quantity: 2 }); -const json = `{"@context":"https://www.datafoodconsortium.org/wp-content/plugins/wordpress-context-jsonld/context_1.16.0.jsonld","@graph":[{"@id":"_:b1","@type":"dfc-b:Price","dfc-b:VATrate":"19.9","dfc-b:hasUnit":"dfc-m:Euro","dfc-b:value":"5.42"},{"@id":"http://myplatform.com/orderLine1","@type":"dfc-b:OrderLine","dfc-b:concerns":"http://myplatform.com/offer1","dfc-b:hasPrice":"_:b1","dfc-b:partOf":"http://myplatform.com/order1","dfc-b:quantity":"2"}]}`; +const json = `{"@context":"https://www.datafoodconsortium.org/wp-content/plugins/wordpress-context-jsonld/context_2.0.0.jsonld","@graph":[{"@id":"_:b1","@type":"dfc-b:Price","dfc-b:VATrate":"19.9","dfc-b:hasUnit":"dfc-m:Euro","dfc-b:value":"5.42"},{"@id":"http://myplatform.com/orderLine1","@type":"dfc-b:OrderLine","dfc-b:concerns":"http://myplatform.com/offer1","dfc-b:hasPrice":"_:b1","dfc-b:partOf":"http://myplatform.com/order1","dfc-b:quantity":"2"}]}`; test('OrderLine:import', async () => { const imported = await connector.import(json); diff --git a/src/org/datafoodconsortium/connector/codegen/typescript/static/test/Organization.test.js b/src/org/datafoodconsortium/connector/codegen/typescript/static/test/Organization.test.js new file mode 100644 index 0000000..647ca1d --- /dev/null +++ b/src/org/datafoodconsortium/connector/codegen/typescript/static/test/Organization.test.js @@ -0,0 +1,245 @@ +import expect from 'node:assert'; +import { test } from 'node:test'; +import Connector from "../lib/Connector.js"; + +const connector = new Connector(); + +const address = connector.createAddress({ + semanticId: "http://myplatform.com/address1", + city: "Briouze" +}); + +const address2 = connector.createAddress({ + semanticId: "http://myplatform.com/address2", +}); + +const customerCategory = connector.createCustomerCategory({ + semanticId: "http://myplatform.com/customerCategory1" +}); + +const customerCategory2 = connector.createCustomerCategory({ + semanticId: "http://myplatform.com/customerCategory2" +}); + +const suppliedProduct = connector.createSuppliedProduct({ + semanticId: "http://myplatform.com/suppliedProduct1" +}); + +const technicalProduct = connector.createTechnicalProduct({ + semanticId: "http://myplatform.com/technicalProduct" +}); + +const technicalProduct2 = connector.createTechnicalProduct({ + semanticId: "http://myplatform.com/technicalProduct2" +}); + +const mainContact = connector.createPerson({ + semanticId: "http://myplatform.com/mainContact" +}); + +const mainContact2 = connector.createPerson({ + semanticId: "http://myplatform.com/mainContact2" +}); + +const suppliedProduct2 = connector.createSuppliedProduct({ + semanticId: "http://myplatform.com/suppliedProduct2" +}); + +const catalog = connector.createCatalog({ + semanticId: "http://myplatform.com/catalog1" +}); + +const catalog2 = connector.createCatalog({ + semanticId: "http://myplatform.com/catalog2" +}); + +const catalogItem = connector.createCatalogItem({ + semanticId: "http://myplatform.com/catalogItem1" +}); + +const catalogItem2 = connector.createCatalogItem({ + semanticId: "http://myplatform.com/catalogItem2" +}); + +const organization = connector.createOrganization({ + semanticId: "http://myplatform.com/organization1", + name: "name", + description: "description", + localizations: [address], + vatNumber: "vatNumber", + customerCategories: [customerCategory], + catalogs: [catalog], + catalogItems: [catalogItem], + suppliedProducts: [suppliedProduct], + technicalProducts: [technicalProduct], + mainContact, + logo: "logo" +}); + +const json = `{"@context":"https://www.datafoodconsortium.org/wp-content/plugins/wordpress-context-jsonld/context_2.0.0.jsonld","@id":"http://myplatform.com/organization1","@type":"dfc-b:Organization","dfc-b:VATnumber":"vatNumber","dfc-b:defines":"http://myplatform.com/customerCategory1","dfc-b:hasAddress":"http://myplatform.com/address1","dfc-b:hasDescription":"description","dfc-b:hasMainContact":"http://myplatform.com/mainContact","dfc-b:logo":"logo","dfc-b:maintains":"http://myplatform.com/catalog1","dfc-b:manages":"http://myplatform.com/catalogItem1","dfc-b:name":"name","dfc-b:proposes":"http://myplatform.com/technicalProduct","dfc-b:supplies":"http://myplatform.com/suppliedProduct1"}`; + +test('Organization:import', async () => { + const imported = await connector.import(json); + const importedOrganization = imported[0]; + expect.strictEqual(imported.length, 1); + expect.strictEqual(importedOrganization.equals(organization), true); +}); + +test('Organization:export', async () => { + const serialized = await connector.export([organization]); + expect.strictEqual(serialized, json); +}); + +test('Organization:getSemanticId', () => { + expect.strictEqual(organization.getSemanticId(), "http://myplatform.com/organization1"); +}); + +test('Organization:getName', () => { + expect.strictEqual(organization.getName(), "name"); +}); + +test('Organization:getDescription', () => { + expect.strictEqual(organization.getDescription(), "description"); +}); + +test('Organization:getLocalizations', async () => { + const localizations = await organization.getLocalizations(); + expect.strictEqual(localizations.length, 1); + expect.strictEqual(localizations[0].equals(address), true); +}); + +test('Organization:getVatNumber', () => { + expect.strictEqual(organization.getVatNumber(), "vatNumber"); +}); + +test('Organization:getCustomerCategories', async () => { + const customerCategories = await organization.getCustomerCategories(); + expect.strictEqual(customerCategories.length, 1); + expect.strictEqual(customerCategories[0].equals(customerCategory), true); +}); + +test('Organization:getSuppliedProducts', async () => { + const suppliedProducts = await organization.getSuppliedProducts(); + expect.strictEqual(suppliedProducts.length, 1); + expect.strictEqual(suppliedProducts[0].equals(suppliedProduct), true); +}); + +test('Organization:getProposedTechnicalProducts', async () => { + const technicalProducts = await organization.getProposedTechnicalProducts(); + expect.strictEqual(technicalProducts.length, 1); + expect.strictEqual(technicalProducts[0].equals(technicalProduct), true); +}); + +test('Organization:getMainContact', async () => { + expect.strictEqual(await organization.getMainContact(), mainContact); +}); + +test('Organization:getDescription', () => { + expect.strictEqual(organization.getLogo(), "logo"); +}); + +test('Organization:getMaintainedCatalogs', async () => { + const catalogs = await organization.getMaintainedCatalogs(); + expect.strictEqual(catalogs.length, 1); + expect.strictEqual(catalogs[0].equals(catalog), true); +}); + +test('Organization:getManagedCatalogItems', async () => { + const catalogItems = await organization.getManagedCatalogItems(); + expect.strictEqual(catalogItems.length, 1); + expect.strictEqual(catalogItems[0].equals(catalogItem), true); +}); + +test('Organization:setName', () => { + organization.setName("name2"); + expect.strictEqual(organization.getName(), "name2"); +}); + +test('Organization:setDescription', () => { + organization.setDescription("description2"); + expect.strictEqual(organization.getDescription(), "description2"); +}); + +test('Organization:addLocalization', async () => { + organization.addLocalization(address2); + const localizations = await organization.getLocalizations(); + expect.strictEqual(localizations.length, 2); + expect.strictEqual(localizations[1].equals(address2), true); +}); + +test('Organization:setVatNumber', () => { + organization.setVatNumber("vatNumber2") + expect.strictEqual(organization.getVatNumber(), "vatNumber2"); +}); + +test('Organization:addCustomerCategory', async () => { + organization.addCustomerCategory(customerCategory2); + const customerCategories = await organization.getCustomerCategories(); + expect.strictEqual(customerCategories.length, 2); + expect.strictEqual(customerCategories[1].equals(customerCategory2), true); +}); + +test('Organization:supplyProduct', async () => { + organization.supplyProduct(suppliedProduct2); + const suppliedProducts = await organization.getSuppliedProducts(); + expect.strictEqual(suppliedProducts.length, 2); + expect.strictEqual(suppliedProducts[0].equals(suppliedProduct), true); + expect.strictEqual(suppliedProducts[1].equals(suppliedProduct2), true); +}); + +test('Organization:proposeTechnicalProducts', async () => { + organization.proposeTechnicalProducts(technicalProduct2); + const technicalProducts = await organization.getProposedTechnicalProducts(); + expect.strictEqual(technicalProducts.length, 2); + expect.strictEqual(technicalProducts[0].equals(technicalProduct), true); + expect.strictEqual(technicalProducts[1].equals(technicalProduct2), true); +}); + +test('Organization:setMainContact', async () => { + organization.setMainContact(mainContact2) + expect.strictEqual(await organization.getMainContact(), mainContact2); +}); + +test('Organization:setLogo', () => { + organization.setLogo("logo2"); + expect.strictEqual(organization.getLogo(), "logo2"); +}); + +/* +test('Organization:unsupplyProduct', async () => { + enterprise.unsupplyProduct(suppliedProduct); + const suppliedProducts = await enterprise.getSuppliedProducts(); + expect.strictEqual(suppliedProducts.length, 1); + expect.strictEqual(suppliedProducts[0].equals(suppliedProduct2), true); +});*/ + +test('Organization:maintainCatalog', async () => { + organization.maintainCatalog(catalog2); + const catalogs = await organization.getMaintainedCatalogs(); + expect.strictEqual(catalogs.length, 2); + expect.strictEqual(catalogs[0].equals(catalog), true); + expect.strictEqual(catalogs[1].equals(catalog2), true); +}); + +/* +test('Organization:unmaintainCatalog', async () => { + enterprise.unmaintainCatalog(catalog); + const catalogs = await enterprise.getMaintainedCatalogs(); + expect(catalogs.length).strictEqual(); + expect.strictEqual(catalogs[0].equals(catalog2), true); +});*/ + +test('Organization:manageCatalogItem', async () => { + organization.manageCatalogItem(catalogItem2); + const catalogItems = await organization.getManagedCatalogItems(); + expect.strictEqual(catalogItems.length, 2); + expect.strictEqual(catalogItems[1].equals(catalogItem2), true); +}); + +/* +test('Organization:unmanageCatalogItem', async () => { + enterprise.unmanageCatalogItem(catalogItem); + const catalogItems = await enterprise.getManagedCatalogItems(); + expect.strictEqual(catalogItems.length, 1); + expect.strictEqual(catalogItems[0].equals(catalogItem2), true); +});*/ \ No newline at end of file diff --git a/src/org/datafoodconsortium/connector/codegen/typescript/static/test/PaymentMethod.test.js b/src/org/datafoodconsortium/connector/codegen/typescript/static/test/PaymentMethod.test.js index 64c8672..209508c 100644 --- a/src/org/datafoodconsortium/connector/codegen/typescript/static/test/PaymentMethod.test.js +++ b/src/org/datafoodconsortium/connector/codegen/typescript/static/test/PaymentMethod.test.js @@ -15,7 +15,7 @@ let paymentMethod = connector.createPaymentMethod({ type: "type" }); -const json = `{"@context":"https://www.datafoodconsortium.org/wp-content/plugins/wordpress-context-jsonld/context_1.16.0.jsonld","@graph":[{"@id":"_:b1","@type":"dfc-b:Price"},{"@id":"http://myplatform.com/paymentMethod","@type":"dfc-b:PaymentMethod","dfc-b:description":"description","dfc-b:hasPrice":"_:b1","dfc-b:name":"name","dfc-b:paymentMethodProvider":"provider","dfc-b:paymentMethodType":"type"}]}`; +const json = `{"@context":"https://www.datafoodconsortium.org/wp-content/plugins/wordpress-context-jsonld/context_2.0.0.jsonld","@graph":[{"@id":"_:b1","@type":"dfc-b:Price"},{"@id":"http://myplatform.com/paymentMethod","@type":"dfc-b:PaymentMethod","dfc-b:description":"description","dfc-b:hasPrice":"_:b1","dfc-b:name":"name","dfc-b:paymentMethodProvider":"provider","dfc-b:paymentMethodType":"type"}]}`; test('PaymentMethod:import', async () => { const importedAll = await connector.import(json); diff --git a/src/org/datafoodconsortium/connector/codegen/typescript/static/test/Person.test.js b/src/org/datafoodconsortium/connector/codegen/typescript/static/test/Person.test.js index b013eb2..77111ba 100644 --- a/src/org/datafoodconsortium/connector/codegen/typescript/static/test/Person.test.js +++ b/src/org/datafoodconsortium/connector/codegen/typescript/static/test/Person.test.js @@ -12,12 +12,12 @@ const address2 = connector.createAddress({ semanticId: "http://myplatform.com/address/address2" }); -const enterprise = connector.createEnterprise({ - semanticId: "http://myplatform.com/address/enterprise1" +const organization = connector.createOrganization({ + semanticId: "http://myplatform.com/address/organization1" }); -const enterprise2 = connector.createEnterprise({ - semanticId: "http://myplatform.com/address/enterprise2" +const organization2 = connector.createOrganization({ + semanticId: "http://myplatform.com/address/organization2" }); const person = connector.createPerson({ @@ -25,10 +25,10 @@ const person = connector.createPerson({ firstName: "John", lastName: "Smith", localizations: [address], - organizations: [enterprise] + organizations: [organization] }); -const json = `{"@context":"https://www.datafoodconsortium.org/wp-content/plugins/wordpress-context-jsonld/context_1.16.0.jsonld","@id":"http://myplatform.com/person1","@type":"dfc-b:Person","dfc-b:affiliates":"http://myplatform.com/address/enterprise1","dfc-b:familyName":"Smith","dfc-b:firstName":"John","dfc-b:hasAddress":"http://myplatform.com/address/address1"}`; +const json = `{"@context":"https://www.datafoodconsortium.org/wp-content/plugins/wordpress-context-jsonld/context_2.0.0.jsonld","@id":"http://myplatform.com/person1","@type":"dfc-b:Person","dfc-b:affiliates":"http://myplatform.com/address/organization1","dfc-b:familyName":"Smith","dfc-b:firstName":"John","dfc-b:hasAddress":"http://myplatform.com/address/address1"}`; test('Person:import', async () => { const imported = await connector.import(json); @@ -63,7 +63,7 @@ test('Person:getLocalizations', async () => { test('Person:getAffiliatedOrganizations', async () => { const organizations = await person.getAffiliatedOrganizations(); expect.strictEqual(organizations.length, 1); - expect.strictEqual(organizations[0].equals(enterprise), true); + expect.strictEqual(organizations[0].equals(organization), true); }); test('Person:setFirstName', () => { @@ -85,11 +85,11 @@ test('Person:addLocalization', async () => { }); test('Person:affiliatedTo', async () => { - person.affiliateTo(enterprise2); + person.affiliateTo(organization2); const organizations = await person.getAffiliatedOrganizations(); expect.strictEqual(organizations.length, 2); - expect.strictEqual(organizations[0].equals(enterprise), true); - expect.strictEqual(organizations[1].equals(enterprise2), true); + expect.strictEqual(organizations[0].equals(organization), true); + expect.strictEqual(organizations[1].equals(organization2), true); }); /* @@ -101,8 +101,8 @@ test('Person:removeLocalization', async () => { }); test('Person:leaveAaffiliatedOrganization', async () => { - person.leaveAaffiliatedOrganization(enterprise); + person.leaveAaffiliatedOrganization(organization); const organizations = await person.affiliatedOrganizations(); expect.strictEqual(organizations.length, 1); - expect.strictEqual(organizations[0].equals(enterprise2), true); + expect.strictEqual(organizations[0].equals(organization2), true); });*/ \ No newline at end of file diff --git a/src/org/datafoodconsortium/connector/codegen/typescript/static/test/PhoneNumber.test.js b/src/org/datafoodconsortium/connector/codegen/typescript/static/test/PhoneNumber.test.js index 6993de7..e15f584 100644 --- a/src/org/datafoodconsortium/connector/codegen/typescript/static/test/PhoneNumber.test.js +++ b/src/org/datafoodconsortium/connector/codegen/typescript/static/test/PhoneNumber.test.js @@ -10,7 +10,7 @@ let phoneNumber = connector.createPhoneNumber({ phoneNumber: "0123456789" }); -const json = `{"@context":"https://www.datafoodconsortium.org/wp-content/plugins/wordpress-context-jsonld/context_1.16.0.jsonld","@id":"http://myplatform.com/phoneNumber","@type":"dfc-b:PhoneNumber","dfc-b:countryCode":"33","dfc-b:phoneNumber":"0123456789"}`; +const json = `{"@context":"https://www.datafoodconsortium.org/wp-content/plugins/wordpress-context-jsonld/context_2.0.0.jsonld","@id":"http://myplatform.com/phoneNumber","@type":"dfc-b:PhoneNumber","dfc-b:countryCode":"33","dfc-b:phoneNumber":"0123456789"}`; test('PhoneNumber:import', async () => { const importedAll = await connector.import(json); diff --git a/src/org/datafoodconsortium/connector/codegen/typescript/static/test/PhysicalCharacteristic.test.js b/src/org/datafoodconsortium/connector/codegen/typescript/static/test/PhysicalCharacteristic.test.js index abd9f4e..6526912 100644 --- a/src/org/datafoodconsortium/connector/codegen/typescript/static/test/PhysicalCharacteristic.test.js +++ b/src/org/datafoodconsortium/connector/codegen/typescript/static/test/PhysicalCharacteristic.test.js @@ -20,7 +20,7 @@ const physicalCharacteristic = connector.createPhysicalCharacteristic({ physicalDimension: physicalDimension }); -const json = `{"@context":"https://www.datafoodconsortium.org/wp-content/plugins/wordpress-context-jsonld/context_1.16.0.jsonld","@id":"_:b1","@type":"dfc-b:PhysicalCharacteristic","dfc-b:hasPhysicalDimension":"dfc-m:Weight","dfc-b:hasUnit":"dfc-m:Kilogram","dfc-b:value":"100"}`; +const json = `{"@context":"https://www.datafoodconsortium.org/wp-content/plugins/wordpress-context-jsonld/context_2.0.0.jsonld","@id":"_:b1","@type":"dfc-b:PhysicalCharacteristic","dfc-b:hasPhysicalDimension":"dfc-m:Weight","dfc-b:hasUnit":"dfc-m:Kilogram","dfc-b:value":"100"}`; test('PhysicalCharacteristic:import', async () => { const imported = await connector.import(json); diff --git a/src/org/datafoodconsortium/connector/codegen/typescript/static/test/PhysicalPlace.test.js b/src/org/datafoodconsortium/connector/codegen/typescript/static/test/PhysicalPlace.test.js index d084739..05b8af3 100644 --- a/src/org/datafoodconsortium/connector/codegen/typescript/static/test/PhysicalPlace.test.js +++ b/src/org/datafoodconsortium/connector/codegen/typescript/static/test/PhysicalPlace.test.js @@ -24,7 +24,7 @@ let physicalPlace = connector.createPhysicalPlace({ realStocks: [realStock], }); -const json = `{"@context":"https://www.datafoodconsortium.org/wp-content/plugins/wordpress-context-jsonld/context_1.16.0.jsonld","@id":"http://myplatform.com/physicalPlace","@type":"dfc-b:PhysicalPlace","dfc-b:description":"description","dfc-b:hasAddress":"http://myplatform.com/address","dfc-b:hasMainContact":"http://myplatform.com/mainContact","dfc-b:hasPhoneNumber":"http://myplatform.com/phoneNumber","dfc-b:hosts":"http://myplatform.com/saleSession","dfc-b:localizes":"http://myplatform.com/theoreticalStock","dfc-b:name":"name","dfc-b:stores":"http://myplatform.com/realStock"}`; +const json = `{"@context":"https://www.datafoodconsortium.org/wp-content/plugins/wordpress-context-jsonld/context_2.0.0.jsonld","@id":"http://myplatform.com/physicalPlace","@type":"dfc-b:PhysicalPlace","dfc-b:description":"description","dfc-b:hasAddress":"http://myplatform.com/address","dfc-b:hasMainContact":"http://myplatform.com/mainContact","dfc-b:hasPhoneNumber":"http://myplatform.com/phoneNumber","dfc-b:hosts":"http://myplatform.com/saleSession","dfc-b:localizes":"http://myplatform.com/theoreticalStock","dfc-b:name":"name","dfc-b:stores":"http://myplatform.com/realStock"}`; test('PhysicalPlace:import', async () => { const importedAll = await connector.import(json); diff --git a/src/org/datafoodconsortium/connector/codegen/typescript/static/test/PhysicalProduct.test.js b/src/org/datafoodconsortium/connector/codegen/typescript/static/test/PhysicalProduct.test.js index 7b5cc81..0ef1b80 100644 --- a/src/org/datafoodconsortium/connector/codegen/typescript/static/test/PhysicalProduct.test.js +++ b/src/org/datafoodconsortium/connector/codegen/typescript/static/test/PhysicalProduct.test.js @@ -38,7 +38,7 @@ let physicalProduct = connector.createPhysicalProduct({ realizedProductionFlows: [realizedProductionFlow], }); -const json = `{"@context":"https://www.datafoodconsortium.org/wp-content/plugins/wordpress-context-jsonld/context_1.16.0.jsonld","@graph":[{"@id":"_:b1","@type":"dfc-b:QuantitativeValue","dfc-b:hasUnit":"dfc-m:Kilogram","dfc-b:value":"1.2"},{"@id":"http://myplatform.com/tomato","@type":"dfc-b:PhysicalProduct","dfc-b:constituedBy":"http://myplatform.com/realStock","dfc-b:consumedBy":"http://myplatform.com/realizedConsumptionFlow","dfc-b:description":"description","dfc-b:hasQuantity":"_:b1","dfc-b:image":["http://myplatform.com/image1","http://myplatform.com/image2"],"dfc-b:name":"name","dfc-b:producedBy":"http://myplatform.com/realizedProductionFlow","dfc-b:represents":"http://myplatform.com/localizedProduct","dfc-b:tracedBy":"http://myplatform.com/productBatch"}]}`; +const json = `{"@context":"https://www.datafoodconsortium.org/wp-content/plugins/wordpress-context-jsonld/context_2.0.0.jsonld","@graph":[{"@id":"_:b1","@type":"dfc-b:QuantitativeValue","dfc-b:hasUnit":"dfc-m:Kilogram","dfc-b:value":"1.2"},{"@id":"http://myplatform.com/tomato","@type":"dfc-b:PhysicalProduct","dfc-b:constituedBy":"http://myplatform.com/realStock","dfc-b:consumedBy":"http://myplatform.com/realizedConsumptionFlow","dfc-b:description":"description","dfc-b:hasQuantity":"_:b1","dfc-b:image":["http://myplatform.com/image1","http://myplatform.com/image2"],"dfc-b:name":"name","dfc-b:producedBy":"http://myplatform.com/realizedProductionFlow","dfc-b:represents":"http://myplatform.com/localizedProduct","dfc-b:tracedBy":"http://myplatform.com/productBatch"}]}`; test('PhysicalProduct:import', async () => { const importedAll = await connector.import(json); diff --git a/src/org/datafoodconsortium/connector/codegen/typescript/static/test/PickUpStep.test.js b/src/org/datafoodconsortium/connector/codegen/typescript/static/test/PickUpStep.test.js new file mode 100644 index 0000000..ec485a2 --- /dev/null +++ b/src/org/datafoodconsortium/connector/codegen/typescript/static/test/PickUpStep.test.js @@ -0,0 +1,32 @@ +import expect from 'node:assert'; +import { test } from 'node:test'; +import Connector from "../lib/Connector.js"; + +const connector = new Connector(); + +const json = `{"@context":"https://www.datafoodconsortium.org/wp-content/plugins/wordpress-context-jsonld/context_2.0.0.jsonld","@id":"http://myplatform.com/pickUpStep","@type":"dfc-b:PickUpStep","dfc-b:arrivalDate":"arrivalDate","dfc-b:description":"description","dfc-b:duration":"duration","dfc-b:isStepOf":"http://myplatform.com/route","dfc-b:name":"name"}`; + +const route = connector.createRoute({ semanticId: "http://myplatform.com/route" }); + +const pickUpStep = connector.createPickUpStep({ + semanticId: "http://myplatform.com/pickUpStep", + name: "name", + description: "description", + routes: [route], + deliveredShipments: [], + pickedUpShipments: [], + duration: "duration", + arrivalDate: "arrivalDate", +}); + +test('PickUpStep:import', async () => { + const imported = await connector.import(json); + const importedObject = imported[0]; + expect.strictEqual(imported.length, 1); + expect.strictEqual(importedObject.equals(pickUpStep), true); +}); + +test('PickUpStep:export', async () => { + const serialized = await connector.export([pickUpStep]); + expect.strictEqual(serialized, json); +}); \ No newline at end of file diff --git a/src/org/datafoodconsortium/connector/codegen/typescript/static/test/PickupOption.test.js b/src/org/datafoodconsortium/connector/codegen/typescript/static/test/PickupOption.test.js index 7513c60..7829a92 100644 --- a/src/org/datafoodconsortium/connector/codegen/typescript/static/test/PickupOption.test.js +++ b/src/org/datafoodconsortium/connector/codegen/typescript/static/test/PickupOption.test.js @@ -36,7 +36,7 @@ let pickupOption = connector.createPickupOption({ endDate: "endDate", }); -const json = `{"@context":"https://www.datafoodconsortium.org/wp-content/plugins/wordpress-context-jsonld/context_1.16.0.jsonld","@graph":[{"@id":"_:b1","@type":"dfc-b:QuantitativeValue","dfc-b:hasUnit":"dfc-m:Kilogram","dfc-b:value":"1.2"},{"@id":"http://myplatform.com/pickupOption","@type":"dfc-b:PickupOption","dfc-b:description":"description","dfc-b:endDate":"endDate","dfc-b:fee":"123","dfc-b:hasQuantity":"_:b1","dfc-b:name":"name","dfc-b:optionOf":"http://myplatform.com/saleSession","dfc-b:pickedUpAt":"http://myplatform.com/pickupPlace","dfc-b:selectedBy":"http://myplatform.com/order","dfc-b:startDate":"beginDate"}]}`; +const json = `{"@context":"https://www.datafoodconsortium.org/wp-content/plugins/wordpress-context-jsonld/context_2.0.0.jsonld","@graph":[{"@id":"_:b1","@type":"dfc-b:QuantitativeValue","dfc-b:hasUnit":"dfc-m:Kilogram","dfc-b:value":"1.2"},{"@id":"http://myplatform.com/pickupOption","@type":"dfc-b:PickupOption","dfc-b:description":"description","dfc-b:endDate":"endDate","dfc-b:fee":"123","dfc-b:hasQuantity":"_:b1","dfc-b:name":"name","dfc-b:optionOf":"http://myplatform.com/saleSession","dfc-b:pickedUpAt":"http://myplatform.com/pickupPlace","dfc-b:selectedBy":"http://myplatform.com/order","dfc-b:startDate":"beginDate"}]}`; test('PickupOption:import', async () => { const importedAll = await connector.import(json); diff --git a/src/org/datafoodconsortium/connector/codegen/typescript/static/test/PlannedLocalTransformation.test.js b/src/org/datafoodconsortium/connector/codegen/typescript/static/test/PlannedLocalTransformation.test.js index 944c920..c942a1e 100644 --- a/src/org/datafoodconsortium/connector/codegen/typescript/static/test/PlannedLocalTransformation.test.js +++ b/src/org/datafoodconsortium/connector/codegen/typescript/static/test/PlannedLocalTransformation.test.js @@ -34,7 +34,7 @@ const transformation = connector.createPlannedLocalTransformation({ productionFlows: [productionFlow] }); -const json = '{"@context":"https://www.datafoodconsortium.org/wp-content/plugins/wordpress-context-jsonld/context_1.16.0.jsonld","@graph":[{"@id":"_:b1","@type":"dfc-b:QuantitativeValue"},{"@id":"_:b2","@type":"dfc-b:QuantitativeValue"},{"@id":"http://myplatform.com/consumptionFlow","@type":"dfc-b:AsPlannedLocalConsumptionFlow","dfc-b:consumes":"http://myplatform.com/inputProduct","dfc-b:hasQuantity":"_:b1"},{"@id":"http://myplatform.com/productionFlow","@type":"dfc-b:AsPlannedLocalProductionFlow","dfc-b:hasQuantity":"_:b2","dfc-b:produces":"http://myplatform.com/outputProduct"},{"@id":"http://myplatform.com/transformation","@type":"dfc-b:AsPlannedLocalTransformation","dfc-b:cost":"123","dfc-b:endDate":"endDate","dfc-b:hasInput":"http://myplatform.com/consumptionFlow","dfc-b:hasOutput":"http://myplatform.com/productionFlow","dfc-b:hasTransformationType":"dfc-v:modify","dfc-b:startDate":"startDate"}]}'; +const json = '{"@context":"https://www.datafoodconsortium.org/wp-content/plugins/wordpress-context-jsonld/context_2.0.0.jsonld","@graph":[{"@id":"_:b1","@type":"dfc-b:QuantitativeValue"},{"@id":"_:b2","@type":"dfc-b:QuantitativeValue"},{"@id":"http://myplatform.com/consumptionFlow","@type":"dfc-b:AsPlannedLocalConsumptionFlow","dfc-b:consumes":"http://myplatform.com/inputProduct","dfc-b:hasQuantity":"_:b1"},{"@id":"http://myplatform.com/productionFlow","@type":"dfc-b:AsPlannedLocalProductionFlow","dfc-b:hasQuantity":"_:b2","dfc-b:produces":"http://myplatform.com/outputProduct"},{"@id":"http://myplatform.com/transformation","@type":"dfc-b:AsPlannedLocalTransformation","dfc-b:cost":"123","dfc-b:endDate":"endDate","dfc-b:hasInput":"http://myplatform.com/consumptionFlow","dfc-b:hasOutput":"http://myplatform.com/productionFlow","dfc-b:hasTransformationType":"dfc-v:modify","dfc-b:startDate":"startDate"}]}'; test('PlannedLocalTransformation:import', async () => { const imported = await connector.import(json); diff --git a/src/org/datafoodconsortium/connector/codegen/typescript/static/test/PlannedTransformation.test.js b/src/org/datafoodconsortium/connector/codegen/typescript/static/test/PlannedTransformation.test.js index 1fe0f18..b7a5fd8 100644 --- a/src/org/datafoodconsortium/connector/codegen/typescript/static/test/PlannedTransformation.test.js +++ b/src/org/datafoodconsortium/connector/codegen/typescript/static/test/PlannedTransformation.test.js @@ -50,7 +50,7 @@ const plannedTransformation = connector.createPlannedTransformation({ productionFlows: [plannedProductionFlow] }); -const json = '{"@context":"https://www.datafoodconsortium.org/wp-content/plugins/wordpress-context-jsonld/context_1.16.0.jsonld","@graph":[{"@id":"_:b1","@type":"dfc-b:QuantitativeValue","dfc-b:hasUnit":"dfc-m:Kilogram","dfc-b:value":"1.2"},{"@id":"_:b2","@type":"dfc-b:QuantitativeValue","dfc-b:hasUnit":"dfc-m:Kilogram","dfc-b:value":"1"},{"@id":"http://myplatform.com/plannedConsumptionFlow","@type":"dfc-b:AsPlannedConsumptionFlow","dfc-b:consumes":"http://myplatform.com/inputProduct","dfc-b:hasQuantity":"_:b1"},{"@id":"http://myplatform.com/plannedProductionFlow","@type":"dfc-b:AsPlannedProductionFlow","dfc-b:hasQuantity":"_:b2","dfc-b:produces":"http://myplatform.com/outputProduct"},{"@id":"http://myplatform.com/transformation","@type":"dfc-b:AsPlannedTransformation","dfc-b:hasInput":"http://myplatform.com/plannedConsumptionFlow","dfc-b:hasOutput":"http://myplatform.com/plannedProductionFlow","dfc-b:hasTransformationType":"dfc-v:modify"}]}'; +const json = '{"@context":"https://www.datafoodconsortium.org/wp-content/plugins/wordpress-context-jsonld/context_2.0.0.jsonld","@graph":[{"@id":"_:b1","@type":"dfc-b:QuantitativeValue","dfc-b:hasUnit":"dfc-m:Kilogram","dfc-b:value":"1.2"},{"@id":"_:b2","@type":"dfc-b:QuantitativeValue","dfc-b:hasUnit":"dfc-m:Kilogram","dfc-b:value":"1"},{"@id":"http://myplatform.com/plannedConsumptionFlow","@type":"dfc-b:AsPlannedConsumptionFlow","dfc-b:consumes":"http://myplatform.com/inputProduct","dfc-b:hasQuantity":"_:b1"},{"@id":"http://myplatform.com/plannedProductionFlow","@type":"dfc-b:AsPlannedProductionFlow","dfc-b:hasQuantity":"_:b2","dfc-b:produces":"http://myplatform.com/outputProduct"},{"@id":"http://myplatform.com/transformation","@type":"dfc-b:AsPlannedTransformation","dfc-b:hasInput":"http://myplatform.com/plannedConsumptionFlow","dfc-b:hasOutput":"http://myplatform.com/plannedProductionFlow","dfc-b:hasTransformationType":"dfc-v:modify"}]}'; test('PlannedTransformation:import', async () => { const imported = await connector.import(json); diff --git a/src/org/datafoodconsortium/connector/codegen/typescript/static/test/PlannedTransformationLoop.test.js b/src/org/datafoodconsortium/connector/codegen/typescript/static/test/PlannedTransformationLoop.test.js index 5ffdda7..c54b169 100644 --- a/src/org/datafoodconsortium/connector/codegen/typescript/static/test/PlannedTransformationLoop.test.js +++ b/src/org/datafoodconsortium/connector/codegen/typescript/static/test/PlannedTransformationLoop.test.js @@ -50,7 +50,7 @@ const plannedTransformation = connector.createPlannedTransformation({ productionFlows: [plannedProductionFlow] }); -const json = '{"@context":"https://www.datafoodconsortium.org/wp-content/plugins/wordpress-context-jsonld/context_1.16.0.jsonld","@graph":[{"@id":"_:b1","@type":"dfc-b:QuantitativeValue","dfc-b:hasUnit":"dfc-m:Kilogram","dfc-b:value":"1.2"},{"@id":"_:b2","@type":"dfc-b:QuantitativeValue","dfc-b:hasUnit":"dfc-m:Kilogram","dfc-b:value":"1"},{"@id":"http://myplatform.com/plannedConsumptionFlow","@type":"dfc-b:AsPlannedConsumptionFlow","dfc-b:consumes":"http://myplatform.com/inputProduct","dfc-b:hasQuantity":"_:b1"},{"@id":"http://myplatform.com/plannedProductionFlow","@type":"dfc-b:AsPlannedProductionFlow","dfc-b:hasQuantity":"_:b2","dfc-b:produces":"http://myplatform.com/outputProduct"},{"@id":"http://myplatform.com/transformation","@type":"dfc-b:AsPlannedTransformation","dfc-b:hasInput":"http://myplatform.com/plannedConsumptionFlow","dfc-b:hasOutput":"http://myplatform.com/plannedProductionFlow","dfc-b:hasTransformationType":"dfc-v:modify"}]}'; +const json = '{"@context":"https://www.datafoodconsortium.org/wp-content/plugins/wordpress-context-jsonld/context_2.0.0.jsonld","@graph":[{"@id":"_:b1","@type":"dfc-b:QuantitativeValue","dfc-b:hasUnit":"dfc-m:Kilogram","dfc-b:value":"1.2"},{"@id":"_:b2","@type":"dfc-b:QuantitativeValue","dfc-b:hasUnit":"dfc-m:Kilogram","dfc-b:value":"1"},{"@id":"http://myplatform.com/plannedConsumptionFlow","@type":"dfc-b:AsPlannedConsumptionFlow","dfc-b:consumes":"http://myplatform.com/inputProduct","dfc-b:hasQuantity":"_:b1"},{"@id":"http://myplatform.com/plannedProductionFlow","@type":"dfc-b:AsPlannedProductionFlow","dfc-b:hasQuantity":"_:b2","dfc-b:produces":"http://myplatform.com/outputProduct"},{"@id":"http://myplatform.com/transformation","@type":"dfc-b:AsPlannedTransformation","dfc-b:hasInput":"http://myplatform.com/plannedConsumptionFlow","dfc-b:hasOutput":"http://myplatform.com/plannedProductionFlow","dfc-b:hasTransformationType":"dfc-v:modify"}]}'; test('PlannedTransformationLoop:import', async () => { const imported = await connector.import(json); diff --git a/src/org/datafoodconsortium/connector/codegen/typescript/static/test/Price.test.js b/src/org/datafoodconsortium/connector/codegen/typescript/static/test/Price.test.js index 0bfd9e5..d6c8d5c 100644 --- a/src/org/datafoodconsortium/connector/codegen/typescript/static/test/Price.test.js +++ b/src/org/datafoodconsortium/connector/codegen/typescript/static/test/Price.test.js @@ -15,7 +15,7 @@ const price = connector.createPrice({ unit: euro }); -const json = `{"@context":"https://www.datafoodconsortium.org/wp-content/plugins/wordpress-context-jsonld/context_1.16.0.jsonld","@id":"_:b1","@type":"dfc-b:Price","dfc-b:VATrate":"8","dfc-b:hasUnit":"dfc-m:Euro","dfc-b:value":"2.54"}`; +const json = `{"@context":"https://www.datafoodconsortium.org/wp-content/plugins/wordpress-context-jsonld/context_2.0.0.jsonld","@id":"_:b1","@type":"dfc-b:Price","dfc-b:VATrate":"8","dfc-b:hasUnit":"dfc-m:Euro","dfc-b:value":"2.54"}`; test('Price:import', async () => { const imported = await connector.import(json); diff --git a/src/org/datafoodconsortium/connector/codegen/typescript/static/test/ProductBatch.test.js b/src/org/datafoodconsortium/connector/codegen/typescript/static/test/ProductBatch.test.js index e5cd689..fbb07cc 100644 --- a/src/org/datafoodconsortium/connector/codegen/typescript/static/test/ProductBatch.test.js +++ b/src/org/datafoodconsortium/connector/codegen/typescript/static/test/ProductBatch.test.js @@ -19,7 +19,7 @@ let productBatch = connector.createProductBatch({ productionDate: "productionDate", }); -const json = `{"@context":"https://www.datafoodconsortium.org/wp-content/plugins/wordpress-context-jsonld/context_1.16.0.jsonld","@id":"http://myplatform.com/productBatch","@type":"dfc-b:ProductBatch","dfc-b:batchNumber":"123","dfc-b:bestBeforeDate":"bestBeforeDate","dfc-b:contains":{"@id":"http://myplatform.com/physicalProduct"},"dfc-b:description":"description","dfc-b:expirationDate":"expirationDate","dfc-b:identifiedBy":"http://myplatform.com/realStock","dfc-b:name":"name","dfc-b:productionDate":"productionDate"}`; +const json = `{"@context":"https://www.datafoodconsortium.org/wp-content/plugins/wordpress-context-jsonld/context_2.0.0.jsonld","@id":"http://myplatform.com/productBatch","@type":"dfc-b:ProductBatch","dfc-b:batchNumber":"123","dfc-b:bestBeforeDate":"bestBeforeDate","dfc-b:contains":{"@id":"http://myplatform.com/physicalProduct"},"dfc-b:description":"description","dfc-b:expirationDate":"expirationDate","dfc-b:identifiedBy":"http://myplatform.com/realStock","dfc-b:name":"name","dfc-b:productionDate":"productionDate"}`; test('ProductBatch:import', async () => { const importedAll = await connector.import(json); diff --git a/src/org/datafoodconsortium/connector/codegen/typescript/static/test/ProductOption.test.js b/src/org/datafoodconsortium/connector/codegen/typescript/static/test/ProductOption.test.js new file mode 100644 index 0000000..3806009 --- /dev/null +++ b/src/org/datafoodconsortium/connector/codegen/typescript/static/test/ProductOption.test.js @@ -0,0 +1,29 @@ +import expect from 'node:assert'; +import { test } from 'node:test'; +import Connector from "../lib/Connector.js"; + +const connector = new Connector(); + +const json = `{"@context":"https://www.datafoodconsortium.org/wp-content/plugins/wordpress-context-jsonld/context_2.0.0.jsonld","@id":"http://myplatform.com/productOption","@type":"dfc-b:ProductOption","dfc-b:date":"date","dfc-b:description":"description","dfc-b:hasReferenceProductOptionValue":"http://myplatform.com/productOptionValue","dfc-b:name":"name"}`; + +const productOptionValue = connector.createProductOptionValue({ semanticId: "http://myplatform.com/productOptionValue" }); + +const productOption = connector.createProductOption({ + semanticId: "http://myplatform.com/productOption", + name: "name", + description: "description", + date: "date", + referenceProductionOptionValue: [productOptionValue], +}); + +test('ProductOption:import', async () => { + const imported = await connector.import(json); + const importedObject = imported[0]; + expect.strictEqual(imported.length, 1); + expect.strictEqual(importedObject.equals(productOption), true); +}); + +test('ProductOption:export', async () => { + const serialized = await connector.export([productOption]); + expect.strictEqual(serialized, json); +}); \ No newline at end of file diff --git a/src/org/datafoodconsortium/connector/codegen/typescript/static/test/ProductOptionValue.test.js b/src/org/datafoodconsortium/connector/codegen/typescript/static/test/ProductOptionValue.test.js new file mode 100644 index 0000000..7f3f719 --- /dev/null +++ b/src/org/datafoodconsortium/connector/codegen/typescript/static/test/ProductOptionValue.test.js @@ -0,0 +1,26 @@ +import expect from 'node:assert'; +import { test } from 'node:test'; +import Connector from "../lib/Connector.js"; + +const connector = new Connector(); + +const json = `{"@context":"https://www.datafoodconsortium.org/wp-content/plugins/wordpress-context-jsonld/context_2.0.0.jsonld","@id":"http://myplatform.com/productOptionValue","@type":"dfc-b:ProductOptionValue","dfc-b:date":"date","dfc-b:description":"description","dfc-b:name":"name"}`; + +const productOptionValue = connector.createProductOptionValue({ + semanticId: "http://myplatform.com/productOptionValue", + name: "name", + description: "description", + date: "date", +}); + +test('ProductOptionValue:import', async () => { + const imported = await connector.import(json); + const importedObject = imported[0]; + expect.strictEqual(imported.length, 1); + expect.strictEqual(importedObject.equals(productOptionValue), true); +}); + +test('ProductOptionValue:export', async () => { + const serialized = await connector.export([productOptionValue]); + expect.strictEqual(serialized, json); +}); \ No newline at end of file diff --git a/src/org/datafoodconsortium/connector/codegen/typescript/static/test/QuantitativeValue.test.js b/src/org/datafoodconsortium/connector/codegen/typescript/static/test/QuantitativeValue.test.js index b56b7f8..406b266 100644 --- a/src/org/datafoodconsortium/connector/codegen/typescript/static/test/QuantitativeValue.test.js +++ b/src/org/datafoodconsortium/connector/codegen/typescript/static/test/QuantitativeValue.test.js @@ -14,7 +14,7 @@ const quantitativeValue = connector.createQuantity({ unit: kilogram }); -const json = `{"@context":"https://www.datafoodconsortium.org/wp-content/plugins/wordpress-context-jsonld/context_1.16.0.jsonld","@id":"_:b1","@type":"dfc-b:QuantitativeValue","dfc-b:hasUnit":"dfc-m:Kilogram","dfc-b:value":"1"}`; +const json = `{"@context":"https://www.datafoodconsortium.org/wp-content/plugins/wordpress-context-jsonld/context_2.0.0.jsonld","@id":"_:b1","@type":"dfc-b:QuantitativeValue","dfc-b:hasUnit":"dfc-m:Kilogram","dfc-b:value":"1"}`; test('QuantitativeValue:import', async () => { const importedAll = await connector.import(json); diff --git a/src/org/datafoodconsortium/connector/codegen/typescript/static/test/RealStock.test.js b/src/org/datafoodconsortium/connector/codegen/typescript/static/test/RealStock.test.js index bf156e8..f98ce23 100644 --- a/src/org/datafoodconsortium/connector/codegen/typescript/static/test/RealStock.test.js +++ b/src/org/datafoodconsortium/connector/codegen/typescript/static/test/RealStock.test.js @@ -18,7 +18,7 @@ let realStock = connector.createRealStock({ productBatches: [productBatch], }); -const json = `{"@context":"https://www.datafoodconsortium.org/wp-content/plugins/wordpress-context-jsonld/context_1.16.0.jsonld","@graph":[{"@id":"_:b1","@type":"dfc-b:QuantitativeValue"},{"@id":"http://myplatform.com/realStock","@type":"dfc-b:RealStock","dfc-b:availabilityDate":"availabilityDate","dfc-b:constitutes":"http://myplatform.com/physicalProduct","dfc-b:hasQuantity":"_:b1","dfc-b:identifies":"http://myplatform.com/productBatch","dfc-b:isStoredIn":{"@id":"http://myplatform.com/physicalPlace"}}]}`; +const json = `{"@context":"https://www.datafoodconsortium.org/wp-content/plugins/wordpress-context-jsonld/context_2.0.0.jsonld","@graph":[{"@id":"_:b1","@type":"dfc-b:QuantitativeValue"},{"@id":"http://myplatform.com/realStock","@type":"dfc-b:RealStock","dfc-b:availabilityDate":"availabilityDate","dfc-b:constitutes":"http://myplatform.com/physicalProduct","dfc-b:hasQuantity":"_:b1","dfc-b:identifies":"http://myplatform.com/productBatch","dfc-b:isStoredIn":{"@id":"http://myplatform.com/physicalPlace"}}]}`; test('RealStock:import', async () => { const importedAll = await connector.import(json); diff --git a/src/org/datafoodconsortium/connector/codegen/typescript/static/test/RealizedTransformation.test.js b/src/org/datafoodconsortium/connector/codegen/typescript/static/test/RealizedTransformation.test.js index 6695d91..8c1bab9 100644 --- a/src/org/datafoodconsortium/connector/codegen/typescript/static/test/RealizedTransformation.test.js +++ b/src/org/datafoodconsortium/connector/codegen/typescript/static/test/RealizedTransformation.test.js @@ -33,7 +33,7 @@ const transformation = connector.createRealizedTransformation({ productionFlows: [productionFlow] }); -const json = '{"@context":"https://www.datafoodconsortium.org/wp-content/plugins/wordpress-context-jsonld/context_1.16.0.jsonld","@graph":[{"@id":"_:b1","@type":"dfc-b:QuantitativeValue"},{"@id":"_:b2","@type":"dfc-b:QuantitativeValue"},{"@id":"http://myplatform.com/consumptionFlow","@type":"dfc-b:AsRealizedConsumptionFlow","dfc-b:consumes":"http://myplatform.com/inputProduct","dfc-b:hasQuantity":"_:b1"},{"@id":"http://myplatform.com/productionFlow","@type":"dfc-b:AsRealizedProductionFlow","dfc-b:hasQuantity":"_:b2","dfc-b:produces":"http://myplatform.com/outputProduct"},{"@id":"http://myplatform.com/transformation","@type":"dfc-b:AsRealizedTransformation","dfc-b:endDate":"endDate","dfc-b:hasInput":"http://myplatform.com/consumptionFlow","dfc-b:hasOutput":"http://myplatform.com/productionFlow","dfc-b:hasTransformationType":"dfc-v:modify","dfc-b:startDate":"startDate"}]}'; +const json = '{"@context":"https://www.datafoodconsortium.org/wp-content/plugins/wordpress-context-jsonld/context_2.0.0.jsonld","@graph":[{"@id":"_:b1","@type":"dfc-b:QuantitativeValue"},{"@id":"_:b2","@type":"dfc-b:QuantitativeValue"},{"@id":"http://myplatform.com/consumptionFlow","@type":"dfc-b:AsRealizedConsumptionFlow","dfc-b:consumes":"http://myplatform.com/inputProduct","dfc-b:hasQuantity":"_:b1"},{"@id":"http://myplatform.com/productionFlow","@type":"dfc-b:AsRealizedProductionFlow","dfc-b:hasQuantity":"_:b2","dfc-b:produces":"http://myplatform.com/outputProduct"},{"@id":"http://myplatform.com/transformation","@type":"dfc-b:AsRealizedTransformation","dfc-b:endDate":"endDate","dfc-b:hasInput":"http://myplatform.com/consumptionFlow","dfc-b:hasOutput":"http://myplatform.com/productionFlow","dfc-b:hasTransformationType":"dfc-v:modify","dfc-b:startDate":"startDate"}]}'; test('RealizedTransformation:import', async () => { const imported = await connector.import(json); diff --git a/src/org/datafoodconsortium/connector/codegen/typescript/static/test/Route.test.js b/src/org/datafoodconsortium/connector/codegen/typescript/static/test/Route.test.js new file mode 100644 index 0000000..dfeb329 --- /dev/null +++ b/src/org/datafoodconsortium/connector/codegen/typescript/static/test/Route.test.js @@ -0,0 +1,29 @@ +import expect from 'node:assert'; +import { test } from 'node:test'; +import Connector from "../lib/Connector.js"; + +const connector = new Connector(); + +const json = `{"@context":"https://www.datafoodconsortium.org/wp-content/plugins/wordpress-context-jsonld/context_2.0.0.jsonld","@id":"http://myplatform.com/route","@type":"dfc-b:Route","dfc-b:description":"description","dfc-b:hasStep":"http://myplatform.com/pickUpStep","dfc-b:name":"name"}`; + +const step = connector.createPickUpStep({ semanticId: "http://myplatform.com/pickUpStep" }) + +const route = connector.createRoute({ + semanticId: "http://myplatform.com/route", + name: "name", + description: "description", + steps: [step], + features: [], +}); + +test('Route:import', async () => { + const imported = await connector.import(json); + const importedObject = imported[0]; + expect.strictEqual(imported.length, 1); + expect.strictEqual(importedObject.equals(route), true); +}); + +test('Route:export', async () => { + const serialized = await connector.export([route]); + expect.strictEqual(serialized, json); +}); \ No newline at end of file diff --git a/src/org/datafoodconsortium/connector/codegen/typescript/static/test/SaleSession.test.js b/src/org/datafoodconsortium/connector/codegen/typescript/static/test/SaleSession.test.js index 32eabfd..df897fa 100644 --- a/src/org/datafoodconsortium/connector/codegen/typescript/static/test/SaleSession.test.js +++ b/src/org/datafoodconsortium/connector/codegen/typescript/static/test/SaleSession.test.js @@ -20,7 +20,7 @@ const saleSession = connector.createSaleSession({ offers: [offer] }); -const json = `{"@context":"https://www.datafoodconsortium.org/wp-content/plugins/wordpress-context-jsonld/context_1.16.0.jsonld","@id":"http://myplatform.com/saleSession1","@type":"dfc-b:SaleSession","dfc-b:beginDate":"beginDate","dfc-b:endDate":"endDate","dfc-b:lists":"http://myplatform.com/offer1","dfc-b:quantity":"5"}`; +const json = `{"@context":"https://www.datafoodconsortium.org/wp-content/plugins/wordpress-context-jsonld/context_2.0.0.jsonld","@id":"http://myplatform.com/saleSession1","@type":"dfc-b:SaleSession","dfc-b:beginDate":"beginDate","dfc-b:endDate":"endDate","dfc-b:lists":"http://myplatform.com/offer1","dfc-b:quantity":"5"}`; test('SaleSession:import', async () => { const importedAll = await connector.import(json); diff --git a/src/org/datafoodconsortium/connector/codegen/typescript/static/test/SocialMedia.test.js b/src/org/datafoodconsortium/connector/codegen/typescript/static/test/SocialMedia.test.js index 1d77bbe..9e3a269 100644 --- a/src/org/datafoodconsortium/connector/codegen/typescript/static/test/SocialMedia.test.js +++ b/src/org/datafoodconsortium/connector/codegen/typescript/static/test/SocialMedia.test.js @@ -10,7 +10,7 @@ let socialMedia = connector.createSocialMedia({ url: "url", }); -const json = `{"@context":"https://www.datafoodconsortium.org/wp-content/plugins/wordpress-context-jsonld/context_1.16.0.jsonld","@id":"http://myplatform.com/socialMedia","@type":"dfc-b:SocialMedia","dfc-b:URL":"url","dfc-b:name":"name"}`; +const json = `{"@context":"https://www.datafoodconsortium.org/wp-content/plugins/wordpress-context-jsonld/context_2.0.0.jsonld","@id":"http://myplatform.com/socialMedia","@type":"dfc-b:SocialMedia","dfc-b:URL":"url","dfc-b:name":"name"}`; test('SocialMedia:import', async () => { const importedAll = await connector.import(json); diff --git a/src/org/datafoodconsortium/connector/codegen/typescript/static/test/SuppliedProduct.test.js b/src/org/datafoodconsortium/connector/codegen/typescript/static/test/SuppliedProduct.test.js index 393551f..d108a98 100644 --- a/src/org/datafoodconsortium/connector/codegen/typescript/static/test/SuppliedProduct.test.js +++ b/src/org/datafoodconsortium/connector/codegen/typescript/static/test/SuppliedProduct.test.js @@ -85,7 +85,7 @@ let suppliedProduct = connector.createSuppliedProduct({ partOrigin: [connector.FACETS.PARTORIGIN.PLANTPARTORIGIN.FRUIT] }); -const json = `{"@context":"https://www.datafoodconsortium.org/wp-content/plugins/wordpress-context-jsonld/context_1.16.0.jsonld","@graph":[{"@id":"_:b1","@type":"dfc-b:QuantitativeValue","dfc-b:hasUnit":"dfc-m:Kilogram","dfc-b:value":"1.2"},{"@id":"_:b2","@type":"dfc-b:AllergenCharacteristic","dfc-b:hasAllergenDimension":"dfc-m:Peanuts","dfc-b:hasUnit":"dfc-m:Kilogram","dfc-b:value":"1"},{"@id":"_:b4","@type":"dfc-b:NutrientCharacteristic","dfc-b:hasNutrientDimension":"dfc-m:Calcium","dfc-b:hasUnit":"dfc-m:Gram","dfc-b:value":"10"},{"@id":"_:b6","@type":"dfc-b:PhysicalCharacteristic","dfc-b:hasPhysicalDimension":"dfc-m:Weight","dfc-b:hasUnit":"dfc-m:Gram","dfc-b:value":"100"},{"@id":"http://myplatform.com/tomato","@type":"dfc-b:SuppliedProduct","dfc-b:alcoholPercentage":"0","dfc-b:description":"Awesome tomato","dfc-b:hasAllergenCharacteristic":"_:b2","dfc-b:hasCertification":["dfc-f:Organic-AB","dfc-f:Organic-EU"],"dfc-b:hasClaim":"dfc-f:NoAddedSugars","dfc-b:hasGeographicalOrigin":"dfc-f:CentreValLoire","dfc-b:hasNatureOrigin":"dfc-f:PlantOrigin","dfc-b:hasNutrientCharacteristic":"_:b4","dfc-b:hasPartOrigin":"dfc-f:Fruit","dfc-b:hasPhysicalCharacteristic":"_:b6","dfc-b:hasQuantity":"_:b1","dfc-b:hasType":"dfc-pt:round-tomato","dfc-b:image":["http://myplatform.com/image1","http://myplatform.com/image2"],"dfc-b:lifetime":"a week","dfc-b:referencedBy":"http://myplatform.com/catalogItem","dfc-b:totalTheoreticalStock":"2.23","dfc-b:usageOrStorageCondition":"free text"}]}`; +const json = `{"@context":"https://www.datafoodconsortium.org/wp-content/plugins/wordpress-context-jsonld/context_2.0.0.jsonld","@graph":[{"@id":"_:b1","@type":"dfc-b:QuantitativeValue","dfc-b:hasUnit":"dfc-m:Kilogram","dfc-b:value":"1.2"},{"@id":"_:b2","@type":"dfc-b:AllergenCharacteristic","dfc-b:hasAllergenDimension":"dfc-m:Peanuts","dfc-b:hasUnit":"dfc-m:Kilogram","dfc-b:value":"1"},{"@id":"_:b4","@type":"dfc-b:NutrientCharacteristic","dfc-b:hasNutrientDimension":"dfc-m:Calcium","dfc-b:hasUnit":"dfc-m:Gram","dfc-b:value":"10"},{"@id":"_:b6","@type":"dfc-b:PhysicalCharacteristic","dfc-b:hasPhysicalDimension":"dfc-m:Weight","dfc-b:hasUnit":"dfc-m:Gram","dfc-b:value":"100"},{"@id":"http://myplatform.com/tomato","@type":"dfc-b:SuppliedProduct","dfc-b:alcoholPercentage":"0","dfc-b:description":"Awesome tomato","dfc-b:hasAllergenCharacteristic":"_:b2","dfc-b:hasCertification":["dfc-f:Organic-AB","dfc-f:Organic-EU"],"dfc-b:hasClaim":"dfc-f:NoAddedSugars","dfc-b:hasGeographicalOrigin":"dfc-f:CentreValLoire","dfc-b:hasNatureOrigin":"dfc-f:PlantOrigin","dfc-b:hasNutrientCharacteristic":"_:b4","dfc-b:hasPartOrigin":"dfc-f:Fruit","dfc-b:hasPhysicalCharacteristic":"_:b6","dfc-b:hasQuantity":"_:b1","dfc-b:hasType":"dfc-pt:round-tomato","dfc-b:image":["http://myplatform.com/image1","http://myplatform.com/image2"],"dfc-b:lifetime":"a week","dfc-b:referencedBy":"http://myplatform.com/catalogItem","dfc-b:totalTheoreticalStock":"2.23","dfc-b:usageOrStorageCondition":"free text"}]}`; test('SuppliedProduct:import', async () => { const importedAll = await connector.import(json); diff --git a/src/org/datafoodconsortium/connector/codegen/typescript/static/test/TechnicalProduct.test.js b/src/org/datafoodconsortium/connector/codegen/typescript/static/test/TechnicalProduct.test.js index 8d08b34..30f4c38 100644 --- a/src/org/datafoodconsortium/connector/codegen/typescript/static/test/TechnicalProduct.test.js +++ b/src/org/datafoodconsortium/connector/codegen/typescript/static/test/TechnicalProduct.test.js @@ -44,7 +44,7 @@ let technicalProduct = connector.createTechnicalProduct({ images: ["http://myplatform.com/image1", "http://myplatform.com/image2"], }); -const json = `{"@context":"https://www.datafoodconsortium.org/wp-content/plugins/wordpress-context-jsonld/context_1.16.0.jsonld","@graph":[{"@id":"_:b1","@type":"dfc-b:QuantitativeValue"},{"@id":"_:b2","@type":"dfc-b:AllergenCharacteristic"},{"@id":"_:b4","@type":"dfc-b:NutrientCharacteristic"},{"@id":"_:b6","@type":"dfc-b:PhysicalCharacteristic"},{"@id":"http://myplatform.com/product","@type":"dfc-b:TechnicalProduct","dfc-b:alcoholPercentage":"123","dfc-b:description":"description","dfc-b:hasAllergenCharacteristic":"_:b2","dfc-b:hasCertification":["dfc-f:Organic-AB","dfc-f:Organic-EU"],"dfc-b:hasClaim":"dfc-f:NoAddedSugars","dfc-b:hasGeographicalOrigin":"dfc-f:CentreValLoire","dfc-b:hasNatureOrigin":"dfc-f:PlantOrigin","dfc-b:hasNutrientCharacteristic":"_:b4","dfc-b:hasPartOrigin":"dfc-f:Fruit","dfc-b:hasPhysicalCharacteristic":"_:b6","dfc-b:hasQuantity":"_:b1","dfc-b:hasType":"dfc-pt:round-tomato","dfc-b:image":["http://myplatform.com/image1","http://myplatform.com/image2"],"dfc-b:lifetime":"lifetime","dfc-b:name":"name","dfc-b:referencedBy":"http://myplatform.com/catalogItem","dfc-b:usageOrStorageCondition":"usageOrStorageConditions"}]}`; +const json = `{"@context":"https://www.datafoodconsortium.org/wp-content/plugins/wordpress-context-jsonld/context_2.0.0.jsonld","@graph":[{"@id":"_:b1","@type":"dfc-b:QuantitativeValue"},{"@id":"_:b2","@type":"dfc-b:AllergenCharacteristic"},{"@id":"_:b4","@type":"dfc-b:NutrientCharacteristic"},{"@id":"_:b6","@type":"dfc-b:PhysicalCharacteristic"},{"@id":"http://myplatform.com/product","@type":"dfc-b:TechnicalProduct","dfc-b:alcoholPercentage":"123","dfc-b:description":"description","dfc-b:hasAllergenCharacteristic":"_:b2","dfc-b:hasCertification":["dfc-f:Organic-AB","dfc-f:Organic-EU"],"dfc-b:hasClaim":"dfc-f:NoAddedSugars","dfc-b:hasGeographicalOrigin":"dfc-f:CentreValLoire","dfc-b:hasNatureOrigin":"dfc-f:PlantOrigin","dfc-b:hasNutrientCharacteristic":"_:b4","dfc-b:hasPartOrigin":"dfc-f:Fruit","dfc-b:hasPhysicalCharacteristic":"_:b6","dfc-b:hasQuantity":"_:b1","dfc-b:hasType":"dfc-pt:round-tomato","dfc-b:image":["http://myplatform.com/image1","http://myplatform.com/image2"],"dfc-b:lifetime":"lifetime","dfc-b:name":"name","dfc-b:referencedBy":"http://myplatform.com/catalogItem","dfc-b:usageOrStorageCondition":"usageOrStorageConditions"}]}`; test('TechnicalProduct:import', async () => { const importedAll = await connector.import(json); diff --git a/src/org/datafoodconsortium/connector/codegen/typescript/static/test/TemplateSaleSession.test.js b/src/org/datafoodconsortium/connector/codegen/typescript/static/test/TemplateSaleSession.test.js new file mode 100644 index 0000000..2e07012 --- /dev/null +++ b/src/org/datafoodconsortium/connector/codegen/typescript/static/test/TemplateSaleSession.test.js @@ -0,0 +1,28 @@ +import expect from 'node:assert'; +import { test } from 'node:test'; +import Connector from "../lib/Connector.js"; + +const connector = new Connector(); + +const json = `{"@context":"https://www.datafoodconsortium.org/wp-content/plugins/wordpress-context-jsonld/context_2.0.0.jsonld","@id":"http://myplatform.com/templateSaleSession","@type":"dfc-b:TemplateSaleSession","dfc-b:hostedAt":"http://myplatform.com/physicalPlace","dfc-b:isTemplateSaleSessionOf":"http://myplatform.com/organization"}`; + +const organization = connector.createOrganization({ semanticId: "http://myplatform.com/organization" }); +const physicalPlace = connector.createPhysicalPlace({ semanticId: "http://myplatform.com/physicalPlace" }); + +const templateSaleSession = connector.createTemplateSaleSession({ + semanticId: "http://myplatform.com/templateSaleSession", + hostingPlaces: [physicalPlace], + organizations: [organization], +}); + +test('TemplateSaleSession:import', async () => { + const imported = await connector.import(json); + const importedObject = imported[0]; + expect.strictEqual(imported.length, 1); + expect.strictEqual(importedObject.equals(templateSaleSession), true); +}); + +test('TemplateSaleSession:export', async () => { + const serialized = await connector.export([templateSaleSession]); + expect.strictEqual(serialized, json); +}); \ No newline at end of file diff --git a/src/org/datafoodconsortium/connector/codegen/typescript/static/test/TheoreticalStock.test.js b/src/org/datafoodconsortium/connector/codegen/typescript/static/test/TheoreticalStock.test.js index abc364b..ea77977 100644 --- a/src/org/datafoodconsortium/connector/codegen/typescript/static/test/TheoreticalStock.test.js +++ b/src/org/datafoodconsortium/connector/codegen/typescript/static/test/TheoreticalStock.test.js @@ -16,7 +16,7 @@ let theoreticalStock = connector.createTheoreticalStock({ availabilityDate: "availabilityDate", }); -const json = `{"@context":"https://www.datafoodconsortium.org/wp-content/plugins/wordpress-context-jsonld/context_1.16.0.jsonld","@graph":[{"@id":"_:b1","@type":"dfc-b:QuantitativeValue"},{"@id":"http://myplatform.com/theoreticalStock","@type":"dfc-b:TheoreticalStock","dfc-b:availabilityDate":"availabilityDate","dfc-b:constitutes":"http://myplatform.com/localizedProduct","dfc-b:hasQuantity":"_:b1","dfc-b:localizedBy":"http://myplatform.com/physicalPlace"}]}`; +const json = `{"@context":"https://www.datafoodconsortium.org/wp-content/plugins/wordpress-context-jsonld/context_2.0.0.jsonld","@graph":[{"@id":"_:b1","@type":"dfc-b:QuantitativeValue"},{"@id":"http://myplatform.com/theoreticalStock","@type":"dfc-b:TheoreticalStock","dfc-b:availabilityDate":"availabilityDate","dfc-b:constitutes":"http://myplatform.com/localizedProduct","dfc-b:hasQuantity":"_:b1","dfc-b:localizedBy":"http://myplatform.com/physicalPlace"}]}`; test('TheoreticalStock:import', async () => { const importedAll = await connector.import(json); diff --git a/src/org/datafoodconsortium/connector/codegen/typescript/static/test/Variant.test.js b/src/org/datafoodconsortium/connector/codegen/typescript/static/test/Variant.test.js new file mode 100644 index 0000000..56ade2c --- /dev/null +++ b/src/org/datafoodconsortium/connector/codegen/typescript/static/test/Variant.test.js @@ -0,0 +1,78 @@ +import * as fs from 'fs'; +import expect from 'node:assert'; +import { test } from 'node:test'; +import Connector from "../lib/Connector.js"; +const facets = JSON.parse(fs.readFileSync('./test/thesaurus/facets.json')); +const measures = JSON.parse(fs.readFileSync('./test/thesaurus/measures.json')); +const productTypes = JSON.parse(fs.readFileSync('./test/thesaurus/productTypes.json')); + +const connector = new Connector(); +await connector.loadFacets(JSON.stringify(facets)); +await connector.loadMeasures(JSON.stringify(measures)); +await connector.loadProductTypes(JSON.stringify(productTypes)); + +const gram = connector.MEASURES.UNIT.QUANTITYUNIT.GRAM; +const kilogram = connector.MEASURES.UNIT.QUANTITYUNIT.KILOGRAM; + +const quantity = connector.createQuantity({ + value: 1.2, + unit: kilogram +}); + +const allergenCharacteristic = connector.createAllergenCharacteristic({ + value: 1, + unit: kilogram, + allergenDimension: connector.MEASURES.DIMENSION.ALLERGENDIMENSION.PEANUTS +}); + +const nutrientCharacteristic = connector.createNutrientCharacteristic({ + value: 10, + unit: gram, + nutrientDimension: connector.MEASURES.DIMENSION.NUTRIENTDIMENSION.CALCIUM +}); + +const physicalCharacteristic = connector.createPhysicalCharacteristic({ + value: 100, + unit: gram, + physicalDimension: connector.MEASURES.DIMENSION.PHYSICALDIMENSION.WEIGHT +}); + +const catalogItem = connector.createCatalogItem({ + semanticId: "http://myplatform.com/catalogItem" +}); + +const json = `{"@context":"https://www.datafoodconsortium.org/wp-content/plugins/wordpress-context-jsonld/context_2.0.0.jsonld","@graph":[{"@id":"_:b1","@type":"dfc-b:QuantitativeValue","dfc-b:hasUnit":"dfc-m:Kilogram","dfc-b:value":"1.2"},{"@id":"_:b2","@type":"dfc-b:AllergenCharacteristic","dfc-b:hasAllergenDimension":"dfc-m:Peanuts","dfc-b:hasUnit":"dfc-m:Kilogram","dfc-b:value":"1"},{"@id":"_:b3","@type":"dfc-b:NutrientCharacteristic","dfc-b:hasNutrientDimension":"dfc-m:Calcium","dfc-b:hasUnit":"dfc-m:Gram","dfc-b:value":"10"},{"@id":"_:b4","@type":"dfc-b:PhysicalCharacteristic","dfc-b:hasPhysicalDimension":"dfc-m:Weight","dfc-b:hasUnit":"dfc-m:Gram","dfc-b:value":"100"},{"@id":"http://myplatform.com/variant","@type":"dfc-b:Variant","dfc-b:alcoholPercentage":"0","dfc-b:description":"description","dfc-b:hasAllergenCharacteristic":"_:b2","dfc-b:hasCertification":["dfc-f:Organic-AB","dfc-f:Organic-EU"],"dfc-b:hasClaim":"dfc-f:NoAddedSugars","dfc-b:hasGeographicalOrigin":"dfc-f:CentreValLoire","dfc-b:hasNatureOrigin":"dfc-f:PlantOrigin","dfc-b:hasNutrientCharacteristic":"_:b3","dfc-b:hasPartOrigin":"dfc-f:Fruit","dfc-b:hasPhysicalCharacteristic":"_:b4","dfc-b:hasQuantity":"_:b1","dfc-b:hasType":"dfc-pt:round-tomato","dfc-b:image":["http://myplatform.com/image1","http://myplatform.com/image2"],"dfc-b:lifetime":"lifetime","dfc-b:name":"name","dfc-b:referencedBy":"http://myplatform.com/catalogItem","dfc-b:usageOrStorageCondition":"usageOrStorageConditions"}]}`; + +const variant = connector.createVariant({ + semanticId: "http://myplatform.com/variant", + name: "name", + description: "description", + images: ["http://myplatform.com/image1", "http://myplatform.com/image2"], + productType: connector.PRODUCT_TYPES.VEGETABLE.TOMATO.ROUND_TOMATO, + quantity: quantity, + totalTheoreticalStock: 2.23, + alcoholPercentage: 0, + lifetime: "lifetime", + claims: [connector.FACETS.CLAIM.NUTRITIONALCLAIM.NOADDEDSUGARS], + usageOrStorageConditions: "usageOrStorageConditions", + allergenCharacteristics: [allergenCharacteristic], + nutrientCharacteristics: [nutrientCharacteristic], + physicalCharacteristics: [physicalCharacteristic], + geographicalOrigin: connector.FACETS.TERRITORIALORIGIN.EUROPE.FRANCE.CENTREVALLOIRE, + catalogItems: [catalogItem], + certifications: [connector.FACETS.CERTIFICATION.ORGANICLABEL.ORGANIC_AB, connector.FACETS.CERTIFICATION.ORGANICLABEL.ORGANIC_EU], + natureOrigin: [connector.FACETS.NATUREORIGIN.PLANTORIGIN], + partOrigin: [connector.FACETS.PARTORIGIN.PLANTPARTORIGIN.FRUIT] +}); + +test('Variant:import', async () => { + const imported = await connector.import(json); + const importedObject = imported[0]; + expect.strictEqual(imported.length, 1); + expect.strictEqual(importedObject.equals(variant), true); +}); + +test('Variant:export', async () => { + const serialized = await connector.export([variant]); + expect.strictEqual(serialized, json); +}); \ No newline at end of file diff --git a/src/org/datafoodconsortium/connector/codegen/typescript/static/test/VariantCharacteristic.test.js b/src/org/datafoodconsortium/connector/codegen/typescript/static/test/VariantCharacteristic.test.js new file mode 100644 index 0000000..99e329d --- /dev/null +++ b/src/org/datafoodconsortium/connector/codegen/typescript/static/test/VariantCharacteristic.test.js @@ -0,0 +1,31 @@ +import expect from 'node:assert'; +import { test } from 'node:test'; +import Connector from "../lib/Connector.js"; + +const connector = new Connector(); + +const json = `{"@context":"https://www.datafoodconsortium.org/wp-content/plugins/wordpress-context-jsonld/context_2.0.0.jsonld","@id":"http://myplatform.com/variantCharacteristic","@type":"dfc-b:VariantCaracteristic","dfc-b:date":"date","dfc-b:description":"description","dfc-b:hasProductOption":"http://myplatform.com/productOption","dfc-b:hasProductOptionValue":"http://myplatform.com/productOptionValue","dfc-b:name":"name"}`; + +const productOption = connector.createProductOption({ semanticId: "http://myplatform.com/productOption" }); +const productOptionValue = connector.createProductOptionValue({ semanticId: "http://myplatform.com/productOptionValue" }); + +const variantCharacteristic = connector.createVariantCharacteristic({ + semanticId: "http://myplatform.com/variantCharacteristic", + name: "name", + description: "description", + date: "date", + productOption, + productOptionValue, +}); + +test('VariantCharacteristic:import', async () => { + const imported = await connector.import(json); + const importedObject = imported[0]; + expect.strictEqual(imported.length, 1); + expect.strictEqual(importedObject.equals(variantCharacteristic), true); +}); + +test('VariantCharacteristic:export', async () => { + const serialized = await connector.export([variantCharacteristic]); + expect.strictEqual(serialized, json); +}); \ No newline at end of file diff --git a/src/org/datafoodconsortium/connector/codegen/typescript/static/test/VirtualPlace.test.js b/src/org/datafoodconsortium/connector/codegen/typescript/static/test/VirtualPlace.test.js index 01adafe..7bad05b 100644 --- a/src/org/datafoodconsortium/connector/codegen/typescript/static/test/VirtualPlace.test.js +++ b/src/org/datafoodconsortium/connector/codegen/typescript/static/test/VirtualPlace.test.js @@ -14,7 +14,7 @@ let virtualPlace = connector.createVirtualPlace({ urls: ["url"], }); -const json = `{"@context":"https://www.datafoodconsortium.org/wp-content/plugins/wordpress-context-jsonld/context_1.16.0.jsonld","@id":"http://myplatform.com/virtualPlace","@type":"dfc-b:VirtualPlace","dfc-b:URL":"url","dfc-b:description":"description","dfc-b:hosts":"http://myplatform.com/saleSession","dfc-b:name":"name"}`; +const json = `{"@context":"https://www.datafoodconsortium.org/wp-content/plugins/wordpress-context-jsonld/context_2.0.0.jsonld","@id":"http://myplatform.com/virtualPlace","@type":"dfc-b:VirtualPlace","dfc-b:URL":"url","dfc-b:description":"description","dfc-b:hosts":"http://myplatform.com/saleSession","dfc-b:name":"name"}`; test('VirtualPlace:import', async () => { const importedAll = await connector.import(json); diff --git a/src/org/datafoodconsortium/connector/codegen/typescript/static/test/thesaurus/facets.json b/src/org/datafoodconsortium/connector/codegen/typescript/static/test/thesaurus/facets.json index 30bae6d..6a66058 100644 --- a/src/org/datafoodconsortium/connector/codegen/typescript/static/test/thesaurus/facets.json +++ b/src/org/datafoodconsortium/connector/codegen/typescript/static/test/thesaurus/facets.json @@ -1,9 +1,9 @@ [ { "@graph" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf", "@type" : [ "http://www.w3.org/2002/07/owl#Ontology" ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#AOC_FR", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#AOC_FR", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ { "@id" : "gs1:PackagingMarkedLabelAccreditationCode-APPELLATION_ORIGINE_CONTROLEE" @@ -13,10 +13,10 @@ "@value" : "AOC" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#LocalLabel" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#LocalLabel" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -26,7 +26,7 @@ "@value" : "Appellation d’origine contrôlée" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#AOP_EU", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#AOP_EU", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ { "@id" : "gs1:PackagingMarkedLabelAccreditationCode-PROTECTED_DESIGNATION_OF_ORIGIN" @@ -39,10 +39,10 @@ "@value" : "AOP" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#LocalLabel" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#LocalLabel" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -52,16 +52,16 @@ "@value" : "Appellation d’origine protégée" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Africa", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Africa", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ { "@id" : "https://www.wikidata.org/wiki/Q15" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#TerritorialOrigin" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#TerritorialOrigin" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -71,13 +71,13 @@ "@value" : "Afrique" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Algae", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Algae", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NatureOrigin" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#NatureOrigin" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -87,13 +87,13 @@ "@value" : "Algue" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#AnimalOrigin", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#AnimalOrigin", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NatureOrigin" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#NatureOrigin" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -103,34 +103,34 @@ "@value" : "Animal" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#AnimalPartOrigin", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#AnimalPartOrigin", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#PartOrigin" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#PartOrigin" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Bee" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Bee" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Bull" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Bull" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Cow" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Cow" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Ewe" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Ewe" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Goat" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Goat" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Hen" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Hen" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Pig" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Pig" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Quail" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Quail" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Sheep" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Sheep" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Rooster" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Rooster" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -140,16 +140,16 @@ "@value" : "Partie ou produit d'un animal" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Asia", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Asia", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ { "@id" : "https://www.wikidata.org/wiki/Q48" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#TerritorialOrigin" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#TerritorialOrigin" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -159,16 +159,16 @@ "@value" : "Asie" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Australia", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Australia", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ { "@id" : "https://www.wikidata.org/wiki/Q3960" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Oceania" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Oceania" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -178,7 +178,7 @@ "@value" : "Australie" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#AuvergneRhoneAlpes", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#AuvergneRhoneAlpes", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ { "@id" : "https://www.wikidata.org/wiki/Q18338206" @@ -188,10 +188,10 @@ "@value" : "ARA" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#France" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#France" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -201,13 +201,13 @@ "@value" : "Auvergne-Rhône-Alpes" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Bacteria", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Bacteria", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NatureOrigin" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#NatureOrigin" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -217,24 +217,24 @@ "@value" : "Bactérie" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Bee", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Bee", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#AnimalPartOrigin" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#AnimalPartOrigin" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#BeeHoney" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#BeeHoney" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#BeePollen" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#BeePollen" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#BeePropolis" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#BeePropolis" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#BeeVenom" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#BeeVenom" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#BeeWax" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#BeeWax" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -244,13 +244,13 @@ "@value" : "Bee" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#BeeHoney", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#BeeHoney", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Bee" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Bee" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -260,13 +260,13 @@ "@value" : "Miel" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#BeePollen", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#BeePollen", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Bee" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Bee" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -276,13 +276,13 @@ "@value" : "Pollen" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#BeePropolis", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#BeePropolis", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Bee" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Bee" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -292,13 +292,13 @@ "@value" : "Propolis" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#BeeVenom", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#BeeVenom", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Bee" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Bee" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -308,13 +308,13 @@ "@value" : "Venom" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#BeeWax", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#BeeWax", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Bee" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Bee" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -324,16 +324,16 @@ "@value" : "Wax" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Belgium", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Belgium", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ { "@id" : "https://www.wikidata.org/wiki/Q31" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Europe" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Europe" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -343,16 +343,16 @@ "@value" : "Belgique" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#BiodynamicLabel", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#BiodynamicLabel", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Certification" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Certification" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Demeter" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Demeter" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -362,16 +362,16 @@ "@value" : "Label biodynamie" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#BleuBlancCoeur_FR", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#BleuBlancCoeur_FR", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ { "@id" : "gs1:PackagingMarkedLabelAccreditationCode-BLEU_BLANC_COEUR" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#EthicalLabel" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#EthicalLabel" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -381,7 +381,7 @@ "@value" : "Bleu-Blanc-Coeur" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#BourgogneFrancheComte", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#BourgogneFrancheComte", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ { "@id" : "https://www.wikidata.org/wiki/Q18578267" @@ -391,10 +391,10 @@ "@value" : "Burgundy-Franche-Comté" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#France" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#France" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -404,16 +404,16 @@ "@value" : "Bourgogne-Franche-Comté" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Brittany", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Brittany", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ { "@id" : "https://www.wikidata.org/wiki/Q12130" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#France" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#France" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -423,13 +423,13 @@ "@value" : "Bretagne" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Bulb", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Bulb", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#PlantPartOrigin" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#PlantPartOrigin" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -439,16 +439,16 @@ "@value" : "Bulbe" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Bull", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Bull", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#AnimalPartOrigin" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#AnimalPartOrigin" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#BullBody" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#BullBody" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -458,13 +458,13 @@ "@value" : "Bœuf" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#BullBody", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#BullBody", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Bull" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Bull" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -474,7 +474,7 @@ "@value" : "Partie du boeuf" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#CentreValLoire", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#CentreValLoire", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ { "@id" : "https://www.wikidata.org/wiki/Q13947" @@ -484,10 +484,10 @@ "@value" : "Centre Loire Valley" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#France" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#France" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -497,7 +497,7 @@ "@value" : "Centre-Val de Loire" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Certification", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Certification", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://purl.org/dc/terms/description" : [ { "@language" : "en", @@ -507,18 +507,18 @@ "@value" : "Les certifications ou labels obtenus par les produits. Exemple : AB, EU bio, DEMETER, Label Rouge..." } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#OrganicLabel" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#OrganicLabel" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#LocalLabel" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#LocalLabel" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#BiodynamicLabel" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#BiodynamicLabel" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#EthicalLabel" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#EthicalLabel" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#MarketingLabel" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#MarketingLabel" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -528,16 +528,16 @@ "@value" : "Certification" } ], "http://www.w3.org/2004/02/skos/core#topConceptOf" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#ChickenBody", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#ChickenBody", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#c_99fce7e0" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#c_99fce7e0" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -547,7 +547,7 @@ "@value" : "Chicken's body" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Claim", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Claim", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://purl.org/dc/terms/description" : [ { "@language" : "en", @@ -557,9 +557,9 @@ "@value" : "\"Les allégations nutritionnelles et de santé sont des mentions, images ou symboles valorisant les denrées alimentaires sur le plan nutritionnel ou de la santé. Ce sont par exemple les phrases du type « jus de fruit riche en vitamine C », « riche en calcium », « allégé en sucres », « bon pour le cœur », « le calcium est nécessaire à une ossature normale », etc.\" (source: Direction générale de la concurrence, de la consommation et de la répression des fraudes, https://www.economie.gouv.fr/dgccrf/Consommation/Etiquetage-des-produits/Allegations-nutrionnelles-et-de-sante)" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NutritionalClaim" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#NutritionalClaim" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#HealthClaim" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#HealthClaim" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -569,23 +569,23 @@ "@value" : "Allégations nutritionnelles et de santé" } ], "http://www.w3.org/2004/02/skos/core#topConceptOf" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#ContainerInformation", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#ContainerInformation", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", "@value" : "Container Information" } ], "http://www.w3.org/2004/02/skos/core#topConceptOf" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#ContainsNutrientOrSubstance", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#ContainsNutrientOrSubstance", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://purl.org/dc/terms/description" : [ { "@language" : "en", @@ -595,10 +595,10 @@ "@value" : "\"Une allégation selon laquelle une denrée alimentaire contient un nutriment ou une autre substance pour lequel ou laquelle le présent règlement ne fixe pas de conditions particulières, ou toute autre allégation susceptible d'avoir le même sens pour le consommateur, ne peut être faite que si le produit respecte toutes les dispositions applicables du présent règlement, et notamment l'article 5. Pour les vitamines et les minéraux, les conditions prévues pour l'allégation «source de» s'appliquent.\" (source: Annex of Regulation (EC) No 1924/2006)" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NutritionalClaim" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#NutritionalClaim" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -608,16 +608,16 @@ "@value" : "Contient nutriment ou autre substance" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Corsica", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Corsica", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ { "@id" : "https://www.wikidata.org/wiki/Q14112" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#France" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#France" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -627,18 +627,18 @@ "@value" : "Corse" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Cow", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Cow", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#AnimalPartOrigin" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#AnimalPartOrigin" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#CowBody" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#CowBody" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#CowMilk" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#CowMilk" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -648,13 +648,13 @@ "@value" : "Vache" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#CowBody", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#CowBody", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Cow" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Cow" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -664,13 +664,13 @@ "@value" : "Partie de vache" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#CowMilk", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#CowMilk", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Cow" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Cow" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -680,18 +680,18 @@ "@value" : "Lait de vache" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet", "@type" : [ "http://www.w3.org/2004/02/skos/core#ConceptScheme" ], "http://www.w3.org/2004/02/skos/core#hasTopConcept" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Certification" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Certification" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Claim" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Claim" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#TerritorialOrigin" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#TerritorialOrigin" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NatureOrigin" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#NatureOrigin" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#PartOrigin" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#PartOrigin" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -701,16 +701,16 @@ "@value" : "Product glossary facets" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Demeter", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Demeter", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ { "@id" : "gs1:PackagingMarkedLabelAccreditationCode-DEMETER_LABEL" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#BiodynamicLabel" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#BiodynamicLabel" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -720,7 +720,7 @@ "@value" : "Demeter" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#EnergyFree", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#EnergyFree", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://purl.org/dc/terms/description" : [ { "@language" : "en", @@ -730,10 +730,10 @@ "@value" : "\"Une allégation selon laquelle une denrée alimentaire n'a pas d'apport énergétique, ou toute autre allégation susceptible d'avoir le même sens pour le consommateur, ne peut être faite que si le produit contient au maximum 4 kcal (17 kJ)/100 ml. Dans le cas des édulcorants de table, la limite de 0,4 kcal (1,7 kJ)/portion, ayant des propriétés édulcorantes équivalentes à 6 g de saccharose (approximativement 1 petite cuillérée de saccharose), s'applique.\" (source: Annex of Regulation (EC) No 1924/2006)" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NutritionalClaim" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#NutritionalClaim" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -743,7 +743,7 @@ "@value" : "Sans apport énergétique" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#EnergyReduced", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#EnergyReduced", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://purl.org/dc/terms/description" : [ { "@language" : "en", @@ -753,10 +753,10 @@ "@value" : "\"Une allégation selon laquelle une denrée alimentaire a une valeur énergétique réduite, ou toute autre allégation susceptible d'avoir le même sens pour le consommateur, ne peut être faite que si la valeur énergétique est réduite d'au moins 30 %, en indiquant la ou les caractéristiques entraînant la réduction de la valeur énergétique totale de la denrée alimentaire.\" (source: Annex of Regulation (EC) No 1924/2006)" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NutritionalClaim" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#NutritionalClaim" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -766,16 +766,16 @@ "@value" : "Valeur énergétique réduite" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#England", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#England", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ { "@id" : "https://www.wikidata.org/wiki/Q21" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#UnitedKingdom" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#UnitedKingdom" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -785,30 +785,30 @@ "@value" : "Angleterre" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#EthicalLabel", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#EthicalLabel", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Certification" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Certification" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Milk-fed" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Milk-fed" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#RedLabel_FR" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#RedLabel_FR" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#FSC" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#FSC" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#MSC" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#MSC" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#HEV" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#HEV" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#BleuBlancCoeur_FR" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#BleuBlancCoeur_FR" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#FairTradeMaxHaavelar" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#FairTradeMaxHaavelar" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#RainforestAlliance" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#RainforestAlliance" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -818,37 +818,37 @@ "@value" : "Label éthique" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Europe", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Europe", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ { "@id" : "https://www.wikidata.org/wiki/Q46" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#TerritorialOrigin" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#TerritorialOrigin" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#France" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#France" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#UnitedKingdom" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#UnitedKingdom" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Ireland" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Ireland" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Belgium" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Belgium" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Germany" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Germany" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Spain" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Spain" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Portugal" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Portugal" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Italy" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Italy" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Switzerland" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Switzerland" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Netherlands" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Netherlands" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -858,18 +858,18 @@ "@value" : "Europe" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Ewe", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Ewe", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#AnimalPartOrigin" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#AnimalPartOrigin" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#EweBody" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#EweBody" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#EweMilk" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#EweMilk" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -879,13 +879,13 @@ "@value" : "Ewe" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#EweBody", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#EweBody", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Ewe" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Ewe" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -895,13 +895,13 @@ "@value" : "Partie de brebis" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#EweMilk", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#EweMilk", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Ewe" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Ewe" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -911,7 +911,7 @@ "@value" : "Sheep milk" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#FSC", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#FSC", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ { "@id" : "gs1:PackagingMarkedLabelAccreditationCode-FOREST_STEWARDSHIP_COUNCIL_LABEL" @@ -924,10 +924,10 @@ "@value" : "FSC" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#EthicalLabel" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#EthicalLabel" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -937,7 +937,7 @@ "@value" : "Forêt durable FSC" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#FairTradeMaxHaavelar", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#FairTradeMaxHaavelar", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ { "@id" : "gs1:PackagingMarkedLabelAccreditationCode-MAX_HAVELAAR" @@ -950,10 +950,10 @@ "@value" : "Max Haavelar" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#EthicalLabel" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#EthicalLabel" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -963,7 +963,7 @@ "@value" : "Fairtrade Max Haavelar" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#FatFree", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#FatFree", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://purl.org/dc/terms/description" : [ { "@language" : "en", @@ -973,10 +973,10 @@ "@value" : "\"Une allégation selon laquelle une denrée alimentaire ne contient pas de matières grasses, ou toute autre allégation susceptible d'avoir le même sens pour le consommateur, ne peut être faite que si le produit ne contient pas plus de 0,5 g de matières grasses par 100 g ou par 100 ml. Cependant, les allégations du type «à X % sans matières grasses» sont interdites.\" (source: Annex of Regulation (EC) No 1924/2006)" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NutritionalClaim" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#NutritionalClaim" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -986,13 +986,13 @@ "@value" : "Sans matières grasses" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Flower", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Flower", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#PlantPartOrigin" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#PlantPartOrigin" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -1002,7 +1002,7 @@ "@value" : "Flower" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#France", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#France", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#altLabel" : [ { "@language" : "en", @@ -1012,40 +1012,40 @@ "@value" : "FR" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Europe" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Europe" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#isDefinedBy" : [ { "@id" : "https://www.wikidata.org/wiki/Q142" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#AuvergneRhoneAlpes" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#AuvergneRhoneAlpes" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#BourgogneFrancheComte" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#BourgogneFrancheComte" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Brittany" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Brittany" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#CentreValLoire" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#CentreValLoire" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Corsica" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Corsica" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#GrandEst" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#GrandEst" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#HautsDeFrance" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#HautsDeFrance" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#IleDeFrance" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#IleDeFrance" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Normandy" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Normandy" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NouvelleAquitaine" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#NouvelleAquitaine" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Occitania" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Occitania" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#PaysDeLoire" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#PaysDeLoire" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#ProvenceAlpesCotesAzur" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#ProvenceAlpesCotesAzur" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1055,13 +1055,13 @@ "@value" : "France" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Fruit", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Fruit", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#PlantPartOrigin" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#PlantPartOrigin" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1071,13 +1071,13 @@ "@value" : "Fruit" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Funghi", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Funghi", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NatureOrigin" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#NatureOrigin" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1087,16 +1087,16 @@ "@value" : "Champignon" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Germany", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Germany", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ { "@id" : "https://www.wikidata.org/wiki/Q183" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Europe" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Europe" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1106,13 +1106,13 @@ "@value" : "Allemagne" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#GlutenFree", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#GlutenFree", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#OtherClaim" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#OtherClaim" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1122,18 +1122,18 @@ "@value" : "Sans gluten" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Goat", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Goat", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#AnimalPartOrigin" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#AnimalPartOrigin" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#GoatBody" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#GoatBody" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#GoatMilk" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#GoatMilk" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -1143,13 +1143,13 @@ "@value" : "Goat" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#GoatBody", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#GoatBody", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Goat" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Goat" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1159,13 +1159,13 @@ "@value" : "Partie de chèvre" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#GoatMilk", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#GoatMilk", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Goat" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Goat" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -1175,16 +1175,16 @@ "@value" : "Goat milk" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#GrandEst", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#GrandEst", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ { "@id" : "https://www.wikidata.org/wiki/Q18677983" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#France" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#France" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1194,7 +1194,7 @@ "@value" : "Grand Est" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#HEV", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#HEV", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ { "@id" : "gs1:PackagingMarkedLabelAccreditationCode-HAUTE_VALEUR_ENVIRONNEMENTALE" @@ -1207,10 +1207,10 @@ "@value" : "HVE" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#EthicalLabel" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#EthicalLabel" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1220,16 +1220,16 @@ "@value" : "Haute Valeur Environnementale" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#HautsDeFrance", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#HautsDeFrance", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ { "@id" : "https://www.wikidata.org/wiki/Q18677767" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#France" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#France" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1239,17 +1239,17 @@ "@value" : "Hauts-de-France" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#HealthClaim", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#HealthClaim", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://purl.org/dc/terms/description" : [ { "@language" : "en", "@value" : "A health claim is any statement about a relationship between food and health." } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Claim" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Claim" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1259,18 +1259,18 @@ "@value" : "Allégation santé" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Hen", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Hen", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#AnimalPartOrigin" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#AnimalPartOrigin" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#HenBody" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#HenBody" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#HenEgg" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#HenEgg" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1280,13 +1280,13 @@ "@value" : "Poule" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#HenBody", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#HenBody", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Hen" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Hen" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1296,13 +1296,13 @@ "@value" : "Partie de poule" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#HenEgg", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#HenEgg", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Hen" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Hen" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1312,7 +1312,7 @@ "@value" : "Œuf de poule" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#HighFibre", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#HighFibre", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://purl.org/dc/terms/description" : [ { "@language" : "en", @@ -1322,10 +1322,10 @@ "@value" : "\"Une allégation selon laquelle une denrée alimentaire est riche en fibres, ou toute autre allégation susceptible d'avoir le même sens pour le consommateur, ne peut être faite que si le produit contient au moins 6 g de fibres par 100 g ou au moins 3 g de fibres par 100 kcal.\" (source: Annex of Regulation (EC) No 1924/2006)" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NutritionalClaim" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#NutritionalClaim" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1335,7 +1335,7 @@ "@value" : "Riche en fibres" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#HighMonounsaturatedFat", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#HighMonounsaturatedFat", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://purl.org/dc/terms/description" : [ { "@language" : "en", @@ -1345,10 +1345,10 @@ "@value" : "\"Une allégation selon laquelle une denrée alimentaire est riche en graisses monoinsaturées, ou toute allégation susceptible d’avoir le même sens pour le consommateur, ne peut être faite que si le produit contient au moins 45 % d’acides gras dérivés de graisses monoinsaturées et si l’énergie fournie par les graisses monoinsaturées représente plus de 20 % de l’apport énergétique du produit.\" (source: Annex of Regulation (EC) No 1924/2006)" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NutritionalClaim" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#NutritionalClaim" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1358,7 +1358,7 @@ "@value" : "Riche en graisses monoinsaturées" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#HighOmega3FattyAcids", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#HighOmega3FattyAcids", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://purl.org/dc/terms/description" : [ { "@language" : "en", @@ -1368,10 +1368,10 @@ "@value" : "\"Une allégation selon laquelle une denrée alimentaire est riche en acide gras oméga-3, ou toute allégation susceptible d’avoir le même sens pour le consommateur, ne peut être faite que si le produit contient au moins 0,6 g d’acide alphalinolénique pour 100 g et 100 kcal, ou au moins 80 mg d’acide eicosapentaénoïque et d’acide docosahexénoïque combinés pour 100 g et 100 kcal.\" (source: Annex of Regulation (EC) No 1924/2006)" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NutritionalClaim" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#NutritionalClaim" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1381,7 +1381,7 @@ "@value" : "Riche en acide gras Oméga-3" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#HighPolyunsaturatedFat", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#HighPolyunsaturatedFat", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://purl.org/dc/terms/description" : [ { "@language" : "en", @@ -1391,10 +1391,10 @@ "@value" : "\"Une allégation selon laquelle une denrée alimentaire est riche en graisses polyinsaturées, ou toute allégation susceptible d’avoir le même sens pour le consommateur, ne peut être faite que si le produit contient au moins 45 % d’acides gras dérivés de graisses polyinsaturées et si l’énergie fournie par les graisses polyinsaturées représente plus de 20 % de l’apport énergétique du produit.\" (source: Annex of Regulation (EC) No 1924/2006)" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NutritionalClaim" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#NutritionalClaim" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1404,7 +1404,7 @@ "@value" : "Riche en graisses polyinsaturées" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#HighProtein", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#HighProtein", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://purl.org/dc/terms/description" : [ { "@language" : "en", @@ -1414,10 +1414,10 @@ "@value" : "\"Une allégation selon laquelle une denrée alimentaire est riche en protéines, ou toute autre allégation susceptible d'avoir le même sens pour le consommateur, ne peut être faite que si 20 % au moins de la valeur énergétique de la denrée alimentaire sont produits par des protéines.\" (source: Annex of Regulation (EC) No 1924/2006)" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NutritionalClaim" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#NutritionalClaim" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1427,7 +1427,7 @@ "@value" : "Riche en protéines" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#HighUnsaturatedFat", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#HighUnsaturatedFat", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://purl.org/dc/terms/description" : [ { "@language" : "en", @@ -1437,10 +1437,10 @@ "@value" : "\"Une allégation selon laquelle une denrée alimentaire est riche en graisses insaturées, ou toute allégation susceptible d’avoir le même sens pour le consommateur, ne peut être faite que si le produit contient au moins 70 % d’acides gras dérivés de graisses insaturées et si l’énergie fournie par les graisses insaturées représente plus de 20 % de l’apport énergétique du produit.\" (source: Annex of Regulation (EC) No 1924/2006)" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NutritionalClaim" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#NutritionalClaim" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1450,7 +1450,7 @@ "@value" : "Riche en graisses insaturées" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#HighVitaminsMinerals", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#HighVitaminsMinerals", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://purl.org/dc/terms/description" : [ { "@language" : "en", @@ -1460,10 +1460,10 @@ "@value" : "\"Une allégation selon laquelle une denrée alimentaire est riche en vitamines et/ou en minéraux, ou toute autre allégation susceptible d'avoir le même sens pour le consommateur, ne peut être faite que si le produit contient au moins deux fois la teneur requise pour l'allégation «source de [NOM DES VITAMINES] et/ou [NOM DES MINÉRAUX]».\" (source: Annex of Regulation (EC) No 1924/2006)" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NutritionalClaim" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#NutritionalClaim" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1473,7 +1473,7 @@ "@value" : "Riche en vitamines et/ou de minéraux" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#IGP_EU", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#IGP_EU", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ { "@id" : "gs1:PackagingMarkedLabelAccreditationCode-IGP" @@ -1486,10 +1486,10 @@ "@value" : "IGP" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#LocalLabel" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#LocalLabel" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1499,7 +1499,7 @@ "@value" : "Indication géographique de provenance" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#IleDeFrance", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#IleDeFrance", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ { "@id" : "https://www.wikidata.org/wiki/Q13917" @@ -1512,10 +1512,10 @@ "@value" : "IDF" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#France" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#France" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1525,7 +1525,7 @@ "@value" : "Île-de-France" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#IncreasedNutrient", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#IncreasedNutrient", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://purl.org/dc/terms/description" : [ { "@language" : "en", @@ -1535,10 +1535,10 @@ "@value" : "\"Une allégation affirmant que la teneur en un ou plusieurs nutriments, autres que des vitamines ou des minéraux, a été augmentée, ou toute autre allégation susceptible d'avoir le même sens pour le consommateur, ne peut être faite que si le produit remplit les conditions applicables à l'allégation «source de» et si l'augmentation de cette teneur est d'au moins 30 % par rapport à un produit similaire.\" (source: Annex of Regulation (EC) No 1924/2006)" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NutritionalClaim" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#NutritionalClaim" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1548,7 +1548,7 @@ "@value" : "Enrichi en nutriment" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Ireland", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Ireland", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ { "@id" : "https://www.wikidata.org/wiki/Q27" @@ -1561,10 +1561,10 @@ "@value" : "Irlande" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Europe" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Europe" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1574,16 +1574,16 @@ "@value" : "République d'Irlande" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Italy", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Italy", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ { "@id" : "https://www.wikidata.org/wiki/Q38" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Europe" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Europe" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1593,13 +1593,13 @@ "@value" : "Italie" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Leaf", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Leaf", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#PlantPartOrigin" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#PlantPartOrigin" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -1609,7 +1609,7 @@ "@value" : "Leaf" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Light", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Light", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://purl.org/dc/terms/description" : [ { "@language" : "en", @@ -1619,10 +1619,10 @@ "@value" : "\"Une allégation selon laquelle un produit est «allégé» ou «light», ou toute autre allégation susceptible d'avoir le même sens pour le consommateur, doit remplir les mêmes conditions que celles applicables aux termes «réduit en»; elle doit aussi être accompagnée d'une indication de la ou les caractéristiques entraînant l'allégement de la denrée alimentaire.\" (source: Annex of Regulation (EC) No 1924/2006)" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NutritionalClaim" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#NutritionalClaim" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -1632,7 +1632,7 @@ "@value" : "Light/Lite" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#LightLite", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#LightLite", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://purl.org/dc/terms/description" : [ { "@language" : "en", @@ -1642,10 +1642,10 @@ "@value" : "\"Une allégation selon laquelle un produit est «allégé» ou «light», ou toute autre allégation susceptible d'avoir le même sens pour le consommateur, doit remplir les mêmes conditions que celles applicables aux termes «réduit en»; elle doit aussi être accompagnée d'une indication de la ou les caractéristiques entraînant l'allégement de la denrée alimentaire.\" (source: Annex of Regulation (EC) No 1924/2006)" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NutritionalClaim" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#NutritionalClaim" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -1655,24 +1655,24 @@ "@value" : "Low/Light" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#LocalLabel", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#LocalLabel", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Certification" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Certification" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#PaysansDeNature_FR" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#PaysansDeNature_FR" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#AOC_FR" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#AOC_FR" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#PGS" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#PGS" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#AOP_EU" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#AOP_EU" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#IGP_EU" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#IGP_EU" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1682,7 +1682,7 @@ "@value" : "Label local" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#LowEnergy", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#LowEnergy", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://purl.org/dc/terms/description" : [ { "@language" : "en", @@ -1692,10 +1692,10 @@ "@value" : "\"Une allégation selon laquelle une denrée alimentaire a une faible valeur énergétique, ou toute autre allégation susceptible d'avoir le même sens pour le consommateur, ne peut être faite que pour un produit contenant au maximum 40 kcal (170 kJ)/100 g dans le cas des solides ou au maximum 20 kcal (80 kJ)/100 ml dans le cas des liquides. Dans le cas des édulcorants de table, la limite de 4 kcal (17 kJ)/portion, avec des propriétés édulcorantes équivalentes à 6 g de saccharose (approximativement 1 petite cuillérée de saccharose), s'applique.\" (source: Annex of Regulation (EC) No 1924/2006)" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NutritionalClaim" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#NutritionalClaim" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1705,7 +1705,7 @@ "@value" : "Faible valeur énergétique" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#LowFat", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#LowFat", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://purl.org/dc/terms/description" : [ { "@language" : "en", @@ -1715,10 +1715,10 @@ "@value" : "\"Une allégation selon laquelle une denrée alimentaire a une faible teneur en matières grasses, ou toute autre allégation susceptible d'avoir le même sens pour le consommateur, ne peut être faite que si le produit ne contient pas plus de 3 g de matières grasses par 100 g dans le cas des solides ou 1,5 g de matières grasses par 100 ml dans le cas des liquides (1,8 g de matières grasses par 100 ml pour le lait demi-écrémé).\" (source: Annex of Regulation (EC) No 1924/2006)" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NutritionalClaim" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#NutritionalClaim" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1728,7 +1728,7 @@ "@value" : "Faible teneur en matière grasse" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#LowSaturatedFat", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#LowSaturatedFat", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://purl.org/dc/terms/description" : [ { "@language" : "en", @@ -1738,10 +1738,10 @@ "@value" : "\"Une allégation selon laquelle une denrée alimentaire a une faible teneur en graisses saturées, ou toute autre allégation susceptible d'avoir le même sens pour le consommateur, ne peut être faite que si la somme des acides gras saturés et des acides gras trans contenus dans le produit n'est pas supérieure à 1,5 g par 100 g de solide ou à 0,75 g par 100 ml de liquide, la somme des acides gras saturés et des acides gras trans ne pouvant pas produire, dans les deux cas, plus de 10 % de l'énergie.\" (source: Annex of Regulation (EC) No 1924/2006)" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NutritionalClaim" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#NutritionalClaim" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1751,7 +1751,7 @@ "@value" : "Faible teneur en graisses saturées" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#LowSodiumSalt", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#LowSodiumSalt", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://purl.org/dc/terms/description" : [ { "@language" : "en", @@ -1761,10 +1761,10 @@ "@value" : "\"Une allégation selon laquelle une denrée alimentaire est pauvre en sodium ou en sel, ou toute autre allégation susceptible d'avoir le même sens pour le consommateur, ne peut être faite que si le produit ne contient pas plus de 0,12 g de sodium ou de l'équivalent en sel par 100 g ou par 100 ml. En ce qui concerne les eaux, autres que les eaux minérales naturelles relevant du champ d'application de la directive 80/777/CEE, cette valeur ne devrait pas être supérieure à 2 mg de sodium par 100 ml.\" (source: Annex of Regulation (EC) No 1924/2006)" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NutritionalClaim" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#NutritionalClaim" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1774,7 +1774,7 @@ "@value" : "Pauvre en sodium/sel" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#LowSugars", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#LowSugars", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://purl.org/dc/terms/description" : [ { "@language" : "en", @@ -1784,10 +1784,10 @@ "@value" : "\"Une allégation selon laquelle une denrée alimentaire a une faible teneur en sucres, ou toute autre allégation susceptible d'avoir le même sens pour le consommateur, ne peut être faite que si le produit ne contient pas plus de 5 g de sucres par 100 g dans le cas des solides ou 2,5 g de sucres par 100 ml dans le cas des liquides.\" (source: Annex of Regulation (EC) No 1924/2006)" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NutritionalClaim" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#NutritionalClaim" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1797,7 +1797,7 @@ "@value" : "Faible teneur en sucres" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#MSC", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#MSC", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ { "@id" : "gs1:PackagingMarkedLabelAccreditationCode-MARINE_STEWARDSHIP_COUNCIL_LABEL" @@ -1810,10 +1810,10 @@ "@value" : "MSC" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#EthicalLabel" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#EthicalLabel" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1823,18 +1823,18 @@ "@value" : "Pêche durable MSC" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#MarketingLabel", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#MarketingLabel", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Certification" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Certification" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#ProductOfTheYear" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#ProductOfTheYear" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#TasteOfTheYear" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#TasteOfTheYear" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1844,13 +1844,13 @@ "@value" : "Label marketing" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Milk-fed", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Milk-fed", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#EthicalLabel" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#EthicalLabel" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1860,13 +1860,13 @@ "@value" : "Nourri au lait" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Mineral", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Mineral", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NatureOrigin" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#NatureOrigin" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1876,13 +1876,13 @@ "@value" : "Minéral" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#MultiGeoOrigin", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#MultiGeoOrigin", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#TerritorialOrigin" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#TerritorialOrigin" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1892,13 +1892,13 @@ "@value" : "Origine territorial multiple" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#MultiNatureOrigin", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#MultiNatureOrigin", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NatureOrigin" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#NatureOrigin" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1908,13 +1908,13 @@ "@value" : "Origine multiple" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#MultiOrigin", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#MultiOrigin", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#PartOrigin" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#PartOrigin" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1924,7 +1924,7 @@ "@value" : "Origine multiple" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Natural", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Natural", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://purl.org/dc/terms/description" : [ { "@language" : "en", @@ -1934,10 +1934,10 @@ "@value" : "\"Lorsqu'une denrée alimentaire remplit naturellement la ou les conditions fixées dans la présente annexe pour l'utilisation d'une allégation nutritionnelle, le terme «naturellement/naturel» peut accompagner cette allégation.\" (source: Annex of Regulation (EC) No 1924/2006)" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NutritionalClaim" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#NutritionalClaim" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -1947,7 +1947,7 @@ "@value" : "Naturally/Natural" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NatureEtProgres", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#NatureEtProgres", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ { "@id" : "gs1:PackagingMarkedLabelAccreditationCode-NATURE_ET_PROGRES" @@ -1957,10 +1957,10 @@ "@value" : "Nature and Progress" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#OrganicLabel" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#OrganicLabel" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1970,7 +1970,7 @@ "@value" : "Nature et progrès" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NatureOrigin", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#NatureOrigin", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://purl.org/dc/terms/description" : [ { "@language" : "en", @@ -1984,26 +1984,26 @@ "@value" : "We made the list for the prototype with open nomenclature to start with for plants and animals but might be better to connected directly from relevant source ontologies for variaties, races, etc. (http://open-nomenclature.org/fra/nomenclatures/varieties/tree)." } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#UnknownNatureOrigin" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#UnknownNatureOrigin" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#MultiNatureOrigin" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#MultiNatureOrigin" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#PlantOrigin" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#PlantOrigin" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#AnimalOrigin" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#AnimalOrigin" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Mineral" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Mineral" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Funghi" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Funghi" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Algae" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Algae" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Bacteria" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Bacteria" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Water" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Water" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2013,19 +2013,19 @@ "@value" : "Source naturelle d'origine" } ], "http://www.w3.org/2004/02/skos/core#topConceptOf" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Netherlands", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Netherlands", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ { "@id" : "https://www.wikidata.org/wiki/Q55" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Europe" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Europe" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2035,16 +2035,16 @@ "@value" : "Pays bas" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NewZealand", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#NewZealand", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ { "@id" : "https://www.wikidata.org/wiki/Q664" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Oceania" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Oceania" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2054,7 +2054,7 @@ "@value" : "Nouvelle Zélande" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NoAddedSodiumSalt", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#NoAddedSodiumSalt", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://purl.org/dc/terms/description" : [ { "@language" : "en", @@ -2064,10 +2064,10 @@ "@value" : "\"Une allégation selon laquelle il n’a pas été ajouté de sodium ou de sel à une denrée alimentaire, ou toute autre allégation susceptible d’avoir le même sens pour le consommateur, ne peut être faite que si le produit ne contient pas de sodium ou de sel ajouté ou tout autre ingrédient contenant du sodium ou du sel ajouté et si le produit ne contient pas plus de 0,12 g de sodium ou de l’équivalent en sel par 100 g ou par 100 ml.\" (source: Annex of Regulation (EC) No 1924/2006)" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NutritionalClaim" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#NutritionalClaim" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2077,7 +2077,7 @@ "@value" : "Sans sodium/sel ajouté" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NoAddedSugars", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#NoAddedSugars", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://purl.org/dc/terms/description" : [ { "@language" : "en", @@ -2087,10 +2087,10 @@ "@value" : "\"Une allégation selon laquelle il n'a pas été ajouté de sucres à une denrée alimentaire, ou toute autre allégation susceptible d'avoir le même sens pour le consommateur, ne peut être faite que si le produit ne contient pas de monosaccharides ou disaccharides ajoutés ou toute autre denrée alimentaire utilisée pour ses propriétés édulcorantes. Si les sucres sont naturellement présents dans la denrée alimentaire, l'indication suivante devrait également figurer sur l'étiquette: «CONTIENT DES SUCRES NATURELLEMENT PRÉSENTS».\" (source: Annex of Regulation (EC) No 1924/2006)" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NutritionalClaim" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#NutritionalClaim" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2100,16 +2100,16 @@ "@value" : "Sans sucres ajoutés" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Normandy", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Normandy", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ { "@id" : "https://www.wikidata.org/wiki/Q18677875" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#France" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#France" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2119,16 +2119,16 @@ "@value" : "Normandie" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NorthAmerica", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#NorthAmerica", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ { "@id" : "https://www.wikidata.org/wiki/Q49" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#TerritorialOrigin" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#TerritorialOrigin" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2138,16 +2138,16 @@ "@value" : "Amérique du Nord" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NorthernIreland", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#NorthernIreland", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ { "@id" : "https://www.wikidata.org/wiki/Q26" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#UnitedKingdom" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#UnitedKingdom" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2157,7 +2157,7 @@ "@value" : "Irlande du Nord" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NouvelleAquitaine", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#NouvelleAquitaine", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ { "@id" : "https://www.wikidata.org/wiki/Q18678082" @@ -2167,10 +2167,10 @@ "@value" : "NA" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#France" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#France" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2180,74 +2180,74 @@ "@value" : "Nouvelle-Aquitaine" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NutritionalClaim", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#NutritionalClaim", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Claim" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Claim" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#LowEnergy" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#LowEnergy" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#EnergyReduced" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#EnergyReduced" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#EnergyFree" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#EnergyFree" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#LowFat" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#LowFat" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#FatFree" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#FatFree" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#LowSaturatedFat" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#LowSaturatedFat" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#SaturatedFatFree" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#SaturatedFatFree" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#LowSugars" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#LowSugars" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#SugarsFree" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#SugarsFree" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NoAddedSugars" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#NoAddedSugars" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#LowSodiumSalt" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#LowSodiumSalt" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#VeryLowSodiumSalt" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#VeryLowSodiumSalt" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#SodiumOrSaltFree" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#SodiumOrSaltFree" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NoAddedSodiumSalt" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#NoAddedSodiumSalt" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#SourceOfFibre" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#SourceOfFibre" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#HighFibre" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#HighFibre" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#SourceOfProtein" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#SourceOfProtein" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#HighProtein" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#HighProtein" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#SourceOfVitaminsMinerals" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#SourceOfVitaminsMinerals" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#HighVitaminsMinerals" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#HighVitaminsMinerals" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#ContainsNutrientOrSubstance" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#ContainsNutrientOrSubstance" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#IncreasedNutrient" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#IncreasedNutrient" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#ReducedNutrient" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#ReducedNutrient" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Light" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Light" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Natural" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Natural" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#SourceOfOmega3FattyAcids" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#SourceOfOmega3FattyAcids" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#HighOmega3FattyAcids" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#HighOmega3FattyAcids" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#HighMonounsaturatedFat" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#HighMonounsaturatedFat" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#HighPolyunsaturatedFat" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#HighPolyunsaturatedFat" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#HighUnsaturatedFat" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#HighUnsaturatedFat" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2257,16 +2257,16 @@ "@value" : "Allégation nutritionnelle" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Occitania", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Occitania", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ { "@id" : "https://www.wikidata.org/wiki/Q18678265" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#France" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#France" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2276,21 +2276,21 @@ "@value" : "Occitanie" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Oceania", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Oceania", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ { "@id" : "https://www.wikidata.org/wiki/Q55643" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#TerritorialOrigin" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#TerritorialOrigin" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Australia" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Australia" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NewZealand" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#NewZealand" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2300,16 +2300,16 @@ "@value" : "Océanie" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Organic-AB", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Organic-AB", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ { "@id" : "gs1:PackagingMarkedLabelAccreditationCode-AGRICULTURE_BIOLOGIQUE" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#OrganicLabel" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#OrganicLabel" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2319,13 +2319,13 @@ "@value" : "Agriculture Biologique" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Organic-BioCoherence", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Organic-BioCoherence", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#OrganicLabel" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#OrganicLabel" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2335,7 +2335,7 @@ "@value" : "Bio Coherence" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Organic-EU", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Organic-EU", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ { "@id" : "gs1:PackagingMarkedLabelAccreditationCode-EU_ORGANIC_FARMING" @@ -2345,10 +2345,10 @@ "@value" : "Eurofeuille" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#OrganicLabel" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#OrganicLabel" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2358,22 +2358,22 @@ "@value" : "Agriculture Biologique EU" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#OrganicLabel", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#OrganicLabel", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Certification" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Certification" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Organic-AB" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Organic-AB" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Organic-EU" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Organic-EU" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Organic-BioCoherence" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Organic-BioCoherence" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NatureEtProgres" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#NatureEtProgres" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2383,7 +2383,7 @@ "@value" : "Label biologique" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#OtherClaim", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#OtherClaim", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://purl.org/dc/terms/description" : [ { "@language" : "en", @@ -2393,17 +2393,17 @@ "@value" : "Toute autre allégation qui déclare, suggère ou implique qu'un aliment a des propriétés particulières." } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Claim" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Claim" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Vegan" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Vegan" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Vegetarian" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Vegetarian" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#GlutenFree" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#GlutenFree" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2413,7 +2413,7 @@ "@value" : "Autre allégation" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#PGS", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#PGS", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ { "@id" : "gs1:PackagingMarkedLabelAccreditationCode-PROTECTED_GEOGRAPHICAL_INDICATION" @@ -2426,10 +2426,10 @@ "@value" : "PGS" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#LocalLabel" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#LocalLabel" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2439,20 +2439,20 @@ "@value" : "Statut géographique protégé" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Package", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Package", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#ContainerInformation" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#ContainerInformation" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", "@value" : "Package" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#PartOrigin", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#PartOrigin", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://purl.org/dc/elements/1.1/description" : [ { "@language" : "en", @@ -2466,16 +2466,16 @@ "@value" : "If I sell carrots, I can sell only the roots, the whole pants with the leaves, or only the leaves. Examples : root, leaves, seeds..." } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#AnimalPartOrigin" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#AnimalPartOrigin" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#MultiOrigin" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#MultiOrigin" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#PlantPartOrigin" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#PlantPartOrigin" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#UnknownPartOrigin" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#UnknownPartOrigin" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2485,10 +2485,10 @@ "@value" : "Partie d'origine" } ], "http://www.w3.org/2004/02/skos/core#topConceptOf" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#PaysDeLoire", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#PaysDeLoire", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ { "@id" : "https://www.wikidata.org/wiki/Q16994" @@ -2498,10 +2498,10 @@ "@value" : "Loire lands" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#France" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#France" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2511,17 +2511,17 @@ "@value" : "Pays de la Loire" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#PaysansDeNature_FR", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#PaysansDeNature_FR", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#altLabel" : [ { "@language" : "en", "@value" : "Farmers of Nature" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#LocalLabel" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#LocalLabel" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2531,16 +2531,16 @@ "@value" : "Paysans de Nature" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Pig", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Pig", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#AnimalPartOrigin" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#AnimalPartOrigin" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#PigBody" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#PigBody" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -2550,13 +2550,13 @@ "@value" : "Pig" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#PigBody", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#PigBody", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Pig" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Pig" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -2566,13 +2566,13 @@ "@value" : "Pig's body" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#PlantOrigin", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#PlantOrigin", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NatureOrigin" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#NatureOrigin" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2582,32 +2582,32 @@ "@value" : "Plante" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#PlantPartOrigin", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#PlantPartOrigin", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#PartOrigin" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#PartOrigin" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Bulb" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Bulb" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Flower" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Flower" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Fruit" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Fruit" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Leaf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Leaf" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Root" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Root" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Seed" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Seed" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Stem" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Stem" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Tuber" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Tuber" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#WholePlant" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#WholePlant" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2617,16 +2617,16 @@ "@value" : "Partie ou produit d'une plante" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Portugal", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Portugal", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ { "@id" : "https://www.wikidata.org/wiki/Q45" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Europe" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Europe" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2636,16 +2636,16 @@ "@value" : "Portugal" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#ProductOfTheYear", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#ProductOfTheYear", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ { "@id" : "gs1:PackagingMarkedLabelAccreditationCode-PRODUCT_OF_THE_YEAR_CONSUMER_SURVEY" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#MarketingLabel" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#MarketingLabel" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2655,7 +2655,7 @@ "@value" : "Elu produit de l'année" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#ProvenceAlpesCotesAzur", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#ProvenceAlpesCotesAzur", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ { "@id" : "https://www.wikidata.org/wiki/Q15104" @@ -2668,10 +2668,10 @@ "@value" : "PACA" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#France" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#France" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2681,16 +2681,16 @@ "@value" : "Provence-Alpes-Côte d’Azur" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Quail", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Quail", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#AnimalPartOrigin" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#AnimalPartOrigin" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#QuailEgg" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#QuailEgg" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -2700,13 +2700,13 @@ "@value" : "Quail" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#QuailEgg", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#QuailEgg", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Quail" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Quail" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2716,16 +2716,16 @@ "@value" : "Œuf de caille" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#RainforestAlliance", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#RainforestAlliance", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ { "@id" : "gs1:PackagingMarkedLabelAccreditationCode-RAINFOREST_ALLIANCE" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#EthicalLabel" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#EthicalLabel" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2735,7 +2735,7 @@ "@value" : "Rainforest Alliance" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#RedLabel_FR", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#RedLabel_FR", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ { "@id" : "gs1:PackagingMarkedLabelAccreditationCode-LABEL_ROUGE" @@ -2745,10 +2745,10 @@ "@value" : "Red Label" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#EthicalLabel" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#EthicalLabel" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2758,7 +2758,7 @@ "@value" : "Label Rouge" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#ReducedNutrient", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#ReducedNutrient", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://purl.org/dc/terms/description" : [ { "@language" : "en", @@ -2768,10 +2768,10 @@ "@value" : "\"Une allégation affirmant que la teneur en un ou plusieurs nutriments a été réduite, ou toute autre allégation susceptible d'avoir le même sens pour le consommateur, ne peut être faite que si la réduction de cette teneur est d'au moins 30 % par rapport à un produit similaire, sauf s'il s'agit de micronutriments, pour lesquels une différence de 10 % par rapport aux valeurs de référence fixées par la directive 90/496/CEE est admissible, ou s'il s'agit de sodium ou d'équivalent en sel, pour lesquels une différence de 25 % est admissible. L’allégation «réduit en graisses saturées», ou toute autre allégation susceptible d’avoir le même sens pour le consommateur, ne peut être faite que: a) si la somme des acides gras saturés et des acides gras trans contenus dans le produit auquel s’applique l’allégation est au moins de 30 % inférieure à la somme des acides gras saturés et des acides gras trans contenus dans un produit similaire; et b) si la teneur en acides gras trans dans le produit auquel s’applique l’allégation est inférieure ou égale à celle d’un produit similaire. L’allégation «réduit en sucres», ou toute autre allégation susceptible d’avoir le même sens pour le consommateur, ne peut être faite que si la valeur énergétique du produit auquel s’applique l’allégation est inférieure ou égale à celle d’un produit similaire.\" (source: Annex of Regulation (EC) No 1924/2006)" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NutritionalClaim" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#NutritionalClaim" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2781,16 +2781,16 @@ "@value" : "Réduit en nutriment" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Rooster", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Rooster", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#AnimalPartOrigin" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#AnimalPartOrigin" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#RoosterBody" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#RoosterBody" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -2800,13 +2800,13 @@ "@value" : "Rooster" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#RoosterBody", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#RoosterBody", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Rooster" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Rooster" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -2816,13 +2816,13 @@ "@value" : "Rooster's body" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Root", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Root", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#PlantPartOrigin" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#PlantPartOrigin" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -2832,7 +2832,7 @@ "@value" : "Root" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#SaturatedFatFree", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#SaturatedFatFree", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://purl.org/dc/terms/description" : [ { "@language" : "en", @@ -2842,10 +2842,10 @@ "@value" : "\"Une allégation selon laquelle une denrée alimentaire ne contient pas de graisses saturées, ou toute autre allégation susceptible d'avoir le même sens pour le consommateur, ne peut être faite que si la somme des acides gras saturés et des acides gras trans n'excède pas 0,1 g de graisses saturées par 100 g ou par 100 ml.\" (source: Annex of Regulation (EC) No 1924/2006)" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NutritionalClaim" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#NutritionalClaim" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2855,16 +2855,16 @@ "@value" : "Sans graisses saturées" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Scotland", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Scotland", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ { "@id" : "https://www.wikidata.org/wiki/Q22" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#UnitedKingdom" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#UnitedKingdom" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2874,13 +2874,13 @@ "@value" : "Ecosse" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Seed", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Seed", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#PlantPartOrigin" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#PlantPartOrigin" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -2890,16 +2890,16 @@ "@value" : "Seed" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Sheep", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Sheep", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#AnimalPartOrigin" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#AnimalPartOrigin" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#SheepBody" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#SheepBody" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -2909,13 +2909,13 @@ "@value" : "Sheep" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#SheepBody", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#SheepBody", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Sheep" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Sheep" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -2925,7 +2925,7 @@ "@value" : "Sheep's body" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#SodiumOrSaltFree", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#SodiumOrSaltFree", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://purl.org/dc/terms/description" : [ { "@language" : "en", @@ -2935,10 +2935,10 @@ "@value" : "\"Une allégation selon laquelle une denrée alimentaire ne contient pas de sodium ou de sel, ou toute autre allégation susceptible d'avoir le même sens pour le consommateur, ne peut être faite que si le produit ne contient pas plus de 0,005 g de sodium ou de l'équivalent en sel par 100 g.\" (source: Annex of Regulation (EC) No 1924/2006)" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NutritionalClaim" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#NutritionalClaim" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2948,7 +2948,7 @@ "@value" : "Sans sodium ou sans sel" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#SourceOfFibre", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#SourceOfFibre", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://purl.org/dc/terms/description" : [ { "@language" : "en", @@ -2958,10 +2958,10 @@ "@value" : "\"Une allégation selon laquelle une denrée alimentaire est une source de fibres, ou toute autre allégation susceptible d'avoir le même sens pour le consommateur, ne peut être faite que si le produit contient au moins 3 g de fibres par 100 g ou au moins 1,5 g de fibres par 100 kcal.\" (source: Annex of Regulation (EC) No 1924/2006)" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NutritionalClaim" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#NutritionalClaim" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2971,7 +2971,7 @@ "@value" : "Source de fibres" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#SourceOfOmega3FattyAcids", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#SourceOfOmega3FattyAcids", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://purl.org/dc/terms/description" : [ { "@language" : "en", @@ -2981,10 +2981,10 @@ "@value" : "\"Une allégation selon laquelle une denrée alimentaire est une source d’acide gras oméga-3, ou toute allégation susceptible d’avoir le même sens pour le consommateur, ne peut être faite que si le produit contient au moins 0,3 g d’acide alphalinolénique pour 100 g et 100 kcal, ou au moins 40 mg d’acide eicosapentaénoïque et d’acide docosahexénoïque combinés pour 100 g et 100 kcal.\" (source: Annex of Regulation (EC) No 1924/2006)" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NutritionalClaim" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#NutritionalClaim" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2994,7 +2994,7 @@ "@value" : "Source d'acide gras Oméga-3" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#SourceOfProtein", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#SourceOfProtein", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://purl.org/dc/terms/description" : [ { "@language" : "en", @@ -3004,10 +3004,10 @@ "@value" : "\"Une allégation selon laquelle une denrée alimentaire est une source de protéines, ou toute autre allégation susceptible d'avoir le même sens pour le consommateur, ne peut être faite que si 12 % au moins de la valeur énergétique de la denrée alimentaire sont produits par des protéines.\" (source: Annex of Regulation (EC) No 1924/2006)" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NutritionalClaim" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#NutritionalClaim" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -3017,7 +3017,7 @@ "@value" : "Source de protéine" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#SourceOfVitaminsMinerals", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#SourceOfVitaminsMinerals", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://purl.org/dc/terms/description" : [ { "@language" : "en", @@ -3027,10 +3027,10 @@ "@value" : "\"Une allégation selon laquelle une denrée alimentaire est une source de vitamines et/ou de minéraux, ou toute autre allégation susceptible d'avoir le même sens pour le consommateur, ne peut être faite que si le produit contient au moins la quantité significative définie à l'annexe de la directive 90/496/CEE ou une quantité prévue au titre de dérogations accordées conformément à l'article 6 du règlement (CE) no 1925/2006 du Parlement européen et du Conseil du 20 décembre 2006 concernant l'adjonction de vitamines, de minéraux et de certaines autres substances aux denrées alimentaires.\" (source: Annex of Regulation (EC) No 1924/2006)" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NutritionalClaim" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#NutritionalClaim" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -3040,16 +3040,16 @@ "@value" : "Source de vitamines et/ou de minéraux" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#SouthAmerica", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#SouthAmerica", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ { "@id" : "https://www.wikidata.org/wiki/Q18" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#TerritorialOrigin" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#TerritorialOrigin" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -3059,16 +3059,16 @@ "@value" : "Amérique du Sud" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Spain", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Spain", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ { "@id" : "https://www.wikidata.org/wiki/Q29" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Europe" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Europe" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -3078,13 +3078,13 @@ "@value" : "Espagne" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Stem", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Stem", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#PlantPartOrigin" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#PlantPartOrigin" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -3094,7 +3094,7 @@ "@value" : "Tige" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#SugarsFree", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#SugarsFree", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://purl.org/dc/terms/description" : [ { "@language" : "en", @@ -3104,10 +3104,10 @@ "@value" : "\"Une allégation selon laquelle une denrée alimentaire ne contient pas de sucres, ou toute autre allégation susceptible d'avoir le même sens pour le consommateur, ne peut être faite que si le produit ne contient pas plus de 0,5 g de sucres par 100 g ou par 100 ml.\" (source: Annex of Regulation (EC) No 1924/2006)" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NutritionalClaim" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#NutritionalClaim" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -3117,16 +3117,16 @@ "@value" : "Sugars-free" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Switzerland", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Switzerland", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ { "@id" : "https://www.wikidata.org/wiki/Q39" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Europe" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Europe" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -3136,13 +3136,13 @@ "@value" : "Suisse" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#TasteOfTheYear", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#TasteOfTheYear", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#MarketingLabel" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#MarketingLabel" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -3152,7 +3152,7 @@ "@value" : "Reconnu Saveur de l’année" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#TerritorialOrigin", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#TerritorialOrigin", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://purl.org/dc/terms/description" : [ { "@language" : "en", @@ -3162,24 +3162,24 @@ "@value" : "Origine géographique du produit concerné" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#UnknownGeoOrigin" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#UnknownGeoOrigin" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#MultiGeoOrigin" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#MultiGeoOrigin" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Europe" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Europe" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Africa" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Africa" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Asia" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Asia" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Oceania" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Oceania" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NorthAmerica" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#NorthAmerica" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#SouthAmerica" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#SouthAmerica" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -3189,16 +3189,16 @@ "@value" : "Origine géographique" } ], "http://www.w3.org/2004/02/skos/core#topConceptOf" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Tuber", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Tuber", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#PlantPartOrigin" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#PlantPartOrigin" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -3208,7 +3208,7 @@ "@value" : "Tubercule" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#UnitedKingdom", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#UnitedKingdom", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ { "@id" : "https://www.wikidata.org/wiki/Q145" @@ -3221,19 +3221,19 @@ "@value" : "UK" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Europe" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Europe" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#England" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#England" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Wales" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Wales" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Scotland" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Scotland" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NorthernIreland" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#NorthernIreland" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -3243,13 +3243,13 @@ "@value" : "Royaume Uni" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#UnknownGeoOrigin", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#UnknownGeoOrigin", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#TerritorialOrigin" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#TerritorialOrigin" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -3259,13 +3259,13 @@ "@value" : "Origine territoriale inconnue" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#UnknownLabel", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#UnknownLabel", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Certification" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Certification" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -3275,13 +3275,13 @@ "@value" : "Label inconnu" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#UnknownNatureOrigin", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#UnknownNatureOrigin", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NatureOrigin" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#NatureOrigin" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -3291,13 +3291,13 @@ "@value" : "Source d'origine inconnue" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#UnknownPartOrigin", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#UnknownPartOrigin", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#PartOrigin" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#PartOrigin" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -3307,13 +3307,13 @@ "@value" : "Unknown part origin" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Vegan", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Vegan", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#OtherClaim" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#OtherClaim" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -3323,13 +3323,13 @@ "@value" : "Vegan" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Vegetarian", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Vegetarian", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#OtherClaim" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#OtherClaim" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -3339,7 +3339,7 @@ "@value" : "Végétarien" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#VeryLowSodiumSalt", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#VeryLowSodiumSalt", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://purl.org/dc/terms/description" : [ { "@language" : "en", @@ -3349,10 +3349,10 @@ "@value" : "\"Une allégation selon laquelle une denrée alimentaire est très pauvre en sodium ou en sel, ou toute autre allégation susceptible d'avoir le même sens pour le consommateur, ne peut être faite que si le produit ne contient pas plus de 0,04 g de sodium ou de l'équivalent en sel par 100 g ou 100 ml. Il est interdit d'utiliser cette allégation pour les eaux minérales naturelles et les autres eaux.\" (source: Annex of Regulation (EC) No 1924/2006)" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NutritionalClaim" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#NutritionalClaim" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -3362,16 +3362,16 @@ "@value" : "Très pauvre en sodium/sel" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Wales", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Wales", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ { "@id" : "https://www.wikidata.org/wiki/Q25" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#UnitedKingdom" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#UnitedKingdom" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -3381,13 +3381,13 @@ "@value" : "Pays de Galles" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Water", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#Water", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NatureOrigin" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#NatureOrigin" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -3397,13 +3397,13 @@ "@value" : "Eau" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#WholePlant", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#WholePlant", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#PlantPartOrigin" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#PlantPartOrigin" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -3413,13 +3413,13 @@ "@value" : "Whole plant" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#c_99fce7e0", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#c_99fce7e0", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#AnimalPartOrigin" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#AnimalPartOrigin" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -3429,5 +3429,5 @@ "@value" : "Poulet" } ] } ], - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/facets.rdf" } ] \ No newline at end of file diff --git a/src/org/datafoodconsortium/connector/codegen/typescript/static/test/thesaurus/measures.json b/src/org/datafoodconsortium/connector/codegen/typescript/static/test/thesaurus/measures.json index 6a3ef77..4a19061 100644 --- a/src/org/datafoodconsortium/connector/codegen/typescript/static/test/thesaurus/measures.json +++ b/src/org/datafoodconsortium/connector/codegen/typescript/static/test/thesaurus/measures.json @@ -1,6 +1,6 @@ { "@context": { - "dfc-m": "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/measures.rdf#", + "dfc-m": "http://w3id.org/dfc/taxonomies/v2.0.0/measures.rdf#", "skos": "http://www.w3.org/2004/02/skos/core#", "rdf": "http://www.w3.org/2000/01/rdf-schema#" }, diff --git a/src/org/datafoodconsortium/connector/codegen/typescript/static/test/thesaurus/productTypes.json b/src/org/datafoodconsortium/connector/codegen/typescript/static/test/thesaurus/productTypes.json index 25b3cb1..a69151b 100644 --- a/src/org/datafoodconsortium/connector/codegen/typescript/static/test/thesaurus/productTypes.json +++ b/src/org/datafoodconsortium/connector/codegen/typescript/static/test/thesaurus/productTypes.json @@ -6,7 +6,7 @@ "@id" : "http://www.w3.org/2004/02/skos/core#ConceptScheme", "@type" : [ "http://www.w3.org/2002/07/owl#Class" ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf", "@type" : [ "http://www.w3.org/2002/07/owl#Ontology" ], "http://purl.org/dc/terms/description" : [ { "@language" : "fr", @@ -26,45 +26,45 @@ "@id" : "http://www.w3.org/2004/02/skos/core#ConceptScheme" } ], "http://www.w3.org/2004/02/skos/core#hasTopConcept" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#bakery" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#bakery" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#dairy-product" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#dairy-product" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#drink" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#drink" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#frozen" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#frozen" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#fruit" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#fruit" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#inedible" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#inedible" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#local-grocery-store" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#local-grocery-store" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#meat-product" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#meat-product" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#vegetable" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#vegetable" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#alcoholic-beverage", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#alcoholic-beverage", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#drink" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#drink" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#aperitif" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#aperitif" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#beer" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#beer" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#cider" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#cider" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#digestive" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#digestive" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#wine" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#wine" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -74,15 +74,15 @@ "@value" : "boisson alcoolisée" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#almond", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#almond", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#nut" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#nut" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -92,15 +92,15 @@ "@value" : "amande" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#aperitif", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#aperitif", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#alcoholic-beverage" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#alcoholic-beverage" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -110,15 +110,15 @@ "@value" : "apéritif" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#apples", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#apples", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#fruit" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#fruit" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -128,15 +128,15 @@ "@value" : "pomme" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#apricot", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#apricot", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#fruit" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#fruit" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -146,15 +146,15 @@ "@value" : "apricot" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#artichoke", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#artichoke", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#vegetable" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -164,15 +164,15 @@ "@value" : "artichoke" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#asparagus", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#asparagus", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#vegetable" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -182,17 +182,17 @@ "@value" : "asperges" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#bakery", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#bakery", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#bread" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#bread" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#viennoiserie-" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#viennoiserie-" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -202,18 +202,18 @@ "@value" : "boulangerie" } ], "http://www.w3.org/2004/02/skos/core#topConceptOf" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#basil", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#basil", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#aromatic" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#aromatic" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -223,15 +223,15 @@ "@value" : "basilic" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#bean", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#bean", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#vegetable" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -241,15 +241,15 @@ "@value" : "haricot" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#beans", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#beans", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#dried-vegetable" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#dried-vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -259,20 +259,20 @@ "@value" : "haricots" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#beef", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#beef", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#meat-product" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#meat-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#grilling-meat" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#grilling-meat" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#simmering-meat" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#simmering-meat" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -282,15 +282,15 @@ "@value" : "viande bovine" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#beer", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#beer", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#alcoholic-beverage" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#alcoholic-beverage" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -300,15 +300,15 @@ "@value" : "bière" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#beetroot", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#beetroot", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#vegetable" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -318,30 +318,30 @@ "@value" : "betterave rouge" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#berry", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#berry", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#fruit" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#fruit" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#blackberry" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#blackberry" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#blackcurrant" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#blackcurrant" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#blueberry" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#blueberry" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#currant" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#currant" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#gooseberry" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#gooseberry" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#raspberry" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#raspberry" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#strawberry" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#strawberry" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -351,15 +351,15 @@ "@value" : "petit fruit" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#biscuit", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#biscuit", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#sweet-groceries" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#sweet-groceries" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -369,15 +369,15 @@ "@value" : "biscuit" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#blackberry", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#blackberry", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#berry" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#berry" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -387,15 +387,15 @@ "@value" : "mûre" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#blackcurrant", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#blackcurrant", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#berry" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#berry" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -405,15 +405,15 @@ "@value" : "cassis" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#blueberry", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#blueberry", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#berry" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#berry" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -423,15 +423,15 @@ "@value" : "myrtille" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#bluefoot-mushroom", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#bluefoot-mushroom", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#mushroom" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#mushroom" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -441,15 +441,15 @@ "@value" : "bluefoot mushroom" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#bottled-fruit", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#bottled-fruit", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#processed-fruit" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#processed-fruit" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -459,15 +459,15 @@ "@value" : "fruit en bocal" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#bottled-vegetable", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#bottled-vegetable", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#processed-vegetable" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#processed-vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -477,15 +477,15 @@ "@value" : "légume en bocal" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#bread", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#bread", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#bakery" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#bakery" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -495,15 +495,15 @@ "@value" : "pain" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#broccoli-cabbage", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#broccoli-cabbage", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#cabbage" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#cabbage" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -513,15 +513,15 @@ "@value" : "chou brocoli" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#brussels-sprouts", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#brussels-sprouts", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#cabbage" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#cabbage" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -531,15 +531,15 @@ "@value" : "choux de bruxelles" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#butter", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#butter", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#cow-dairy-product" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#cow-dairy-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -549,15 +549,15 @@ "@value" : "butter" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#butternut", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#butternut", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#squash" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#squash" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -567,38 +567,38 @@ "@value" : "butternut" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#cabbage", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#cabbage", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#vegetable" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#broccoli-cabbage" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#broccoli-cabbage" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#brussels-sprouts" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#brussels-sprouts" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#cauliflower" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#cauliflower" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#chinese-cabbage" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#chinese-cabbage" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#kale" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#kale" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#kale-cabbage" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#kale-cabbage" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#kohlrabi" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#kohlrabi" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#red-cabbage" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#red-cabbage" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#romanesco" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#romanesco" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#savoy-cabbage" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#savoy-cabbage" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#smooth-cabbage" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#smooth-cabbage" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -608,15 +608,15 @@ "@value" : "chou" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#canned-fruit", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#canned-fruit", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#processed-fruit" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#processed-fruit" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -626,15 +626,15 @@ "@value" : "fruit en conserve" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#canned-vegetable", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#canned-vegetable", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#processed-vegetable" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#processed-vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -644,30 +644,30 @@ "@value" : "légume en conserve" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#cannedGoods", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#cannedGoods", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#savory-groceries" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#savory-groceries" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", "@value" : "canned goods" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#carrot", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#carrot", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#vegetable" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -677,15 +677,15 @@ "@value" : "carrot" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#cauliflower", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#cauliflower", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#cabbage" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#cabbage" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -695,15 +695,15 @@ "@value" : "chou-fleur" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#celeriac", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#celeriac", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#vegetable" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -713,15 +713,15 @@ "@value" : "céleri-rave" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#celery-branch", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#celery-branch", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#vegetable" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -731,15 +731,15 @@ "@value" : "céleri branche" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#chanterelle-mushroom", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#chanterelle-mushroom", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#mushroom" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#mushroom" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -749,15 +749,15 @@ "@value" : "chanterelle mushroom" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#chard", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#chard", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#vegetable" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -767,15 +767,15 @@ "@value" : "chard" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#cherry", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#cherry", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#fruit" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#fruit" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -785,15 +785,15 @@ "@value" : "cherry" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#cherry-tomato", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#cherry-tomato", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#tomato" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#tomato" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -803,15 +803,15 @@ "@value" : "tomate cerise" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#chervil", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#chervil", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#aromatic" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#aromatic" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -821,15 +821,15 @@ "@value" : "chervil" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#chestnut", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#chestnut", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#nut" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#nut" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -839,15 +839,15 @@ "@value" : "marron" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#chicken", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#chicken", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#poultry" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#poultry" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -857,15 +857,15 @@ "@value" : "poulet" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#chicory", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#chicory", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#salad" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#salad" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -875,15 +875,15 @@ "@value" : "chicorée" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#chilli-pepper", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#chilli-pepper", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#aromatic" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#aromatic" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -893,15 +893,15 @@ "@value" : "piment" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#chinese-cabbage", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#chinese-cabbage", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#cabbage" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#cabbage" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -911,15 +911,15 @@ "@value" : "chou chinois" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#chive", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#chive", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#aromatic" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#aromatic" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -929,15 +929,15 @@ "@value" : "ciboulette" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#cider", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#cider", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#alcoholic-beverage" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#alcoholic-beverage" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -947,15 +947,15 @@ "@value" : "cidre" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#clementine", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#clementine", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#fruit" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#fruit" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -965,15 +965,15 @@ "@value" : "clémentine" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#cluster-tomato", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#cluster-tomato", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#tomato" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#tomato" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -983,15 +983,15 @@ "@value" : "tomate en grappe" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#confectionery", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#confectionery", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#sweet-groceries" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#sweet-groceries" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1001,15 +1001,15 @@ "@value" : "confiserie" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#cooked-meat", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#cooked-meat", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#pork" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#pork" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1019,15 +1019,15 @@ "@value" : "viande cuite" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#coriander", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#coriander", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#aromatic" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#aromatic" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1037,15 +1037,15 @@ "@value" : "coriandre" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#corn-salad", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#corn-salad", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#salad" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#salad" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1055,15 +1055,15 @@ "@value" : "mâche" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#cosmetic", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#cosmetic", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#inedible" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#inedible" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1073,15 +1073,15 @@ "@value" : "cosmétique" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#coulemelle-mushroom", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#coulemelle-mushroom", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#mushroom" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#mushroom" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -1091,15 +1091,15 @@ "@value" : "parasol mushroom" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#courgette", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#courgette", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#vegetable" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1109,40 +1109,40 @@ "@value" : "courgette" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#cow-dairy-product", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#cow-dairy-product", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#dairy-product" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#dairy-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#butter" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#butter" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#cream-cheese" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#cream-cheese" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#dairy-dessert" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#dairy-dessert" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#flavored-yogurt" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#flavored-yogurt" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#fresh-cheese" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#fresh-cheese" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#fresh-cream" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#fresh-cream" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#mature-cheese" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#mature-cheese" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#milk" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#milk" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#natural-yogurt" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#natural-yogurt" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#sweet-yogurt" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#sweet-yogurt" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#yogurt-on-a-bed-of-fruit" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#yogurt-on-a-bed-of-fruit" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#yogurt-with-fruits" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#yogurt-with-fruits" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1152,15 +1152,15 @@ "@value" : "produit laitier de vache" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#cream-cheese", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#cream-cheese", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#cow-dairy-product" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#cow-dairy-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1170,15 +1170,15 @@ "@value" : "fromage blanc" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#crepe-and-galette", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#crepe-and-galette", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#savory-groceries" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#savory-groceries" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1188,15 +1188,15 @@ "@value" : "crêpe et galette" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#cress", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#cress", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#salad" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#salad" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1206,15 +1206,15 @@ "@value" : "cresson" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#cucumber", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#cucumber", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#vegetable" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -1224,15 +1224,15 @@ "@value" : "cucumber" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#currant", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#currant", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#berry" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#berry" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1242,15 +1242,15 @@ "@value" : "groseille" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#dairy-dessert", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#dairy-dessert", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#cow-dairy-product" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#cow-dairy-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1260,21 +1260,21 @@ "@value" : "dessert lacté" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#dairy-product", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#dairy-product", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#cow-dairy-product" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#cow-dairy-product" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#goat-dairy-product" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#goat-dairy-product" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#other-dairy-product" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#other-dairy-product" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#sheep-dairy-product" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#sheep-dairy-product" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1284,18 +1284,18 @@ "@value" : "produit laitier" } ], "http://www.w3.org/2004/02/skos/core#topConceptOf" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#dandelion", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#dandelion", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#salad" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#salad" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1305,15 +1305,15 @@ "@value" : "pissenlit" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#deaths-trumpet", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#deaths-trumpet", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#mushroom" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#mushroom" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1323,15 +1323,15 @@ "@value" : "trompette de la mort" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#delicatessen", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#delicatessen", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#pork" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#pork" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -1341,15 +1341,15 @@ "@value" : "delicatessen" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#digestive", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#digestive", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#alcoholic-beverage" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#alcoholic-beverage" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -1359,15 +1359,15 @@ "@value" : "digestive" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#dill", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#dill", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#aromatic" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#aromatic" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -1377,15 +1377,15 @@ "@value" : "dill" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#dried-fruit", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#dried-fruit", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#processed-fruit" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#processed-fruit" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1395,24 +1395,24 @@ "@value" : "fruit sec" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#dried-vegetable", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#dried-vegetable", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#vegetable" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#beans" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#beans" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#lentils" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#lentils" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#peas" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#peas" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#quinoa" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#quinoa" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1422,28 +1422,28 @@ "@value" : "légume sec" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#dried_goods", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#dried_goods", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#local-grocery-store" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#local-grocery-store" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#flour" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#flour" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#dried_herb" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#dried_herb" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#flake" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#flake" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#grain" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#grain" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#seed" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#seed" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#pulse" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#pulse" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1453,15 +1453,15 @@ "@value" : "produits sec" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#dried_herb", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#dried_herb", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#dried_goods" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#dried_goods" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1471,17 +1471,17 @@ "@value" : "aromate sec" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#drink", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#drink", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#alcoholic-beverage" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#alcoholic-beverage" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#soft-drink" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#soft-drink" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -1491,18 +1491,18 @@ "@value" : "drink" } ], "http://www.w3.org/2004/02/skos/core#topConceptOf" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#duck", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#duck", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#poultry" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#poultry" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -1512,15 +1512,15 @@ "@value" : "duck" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#egg", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#egg", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#meat-product" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#meat-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1530,15 +1530,15 @@ "@value" : "œuf" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#eggplant", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#eggplant", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#vegetable" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -1548,15 +1548,15 @@ "@value" : "eggplant" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#endive", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#endive", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#salad" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#salad" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1566,15 +1566,15 @@ "@value" : "endive" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#fennel", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#fennel", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#vegetable" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1584,30 +1584,30 @@ "@value" : "fenouil" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#ferment", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#ferment", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#savory-groceries" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#savory-groceries" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", "@value" : "ferment" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#festive-poultry", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#festive-poultry", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#poultry" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#poultry" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1617,15 +1617,15 @@ "@value" : "volaille festive" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#fifth-range-vegetable", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#fifth-range-vegetable", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#vegetable" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1635,15 +1635,15 @@ "@value" : "légume de cinquième gamme" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#fig", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#fig", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#fruit" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#fruit" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1653,15 +1653,15 @@ "@value" : "figue" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#fish", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#fish", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#fishery-product" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#fishery-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1671,22 +1671,22 @@ "@value" : "poisson" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#fishery-product", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#fishery-product", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#meat-product" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#meat-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#fish" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#fish" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#seashell" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#seashell" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#shellfish" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#shellfish" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1696,15 +1696,15 @@ "@value" : "produit de la pêche" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#flake", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#flake", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#dried_goods" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#dried_goods" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1714,15 +1714,15 @@ "@value" : "flocon" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#flavored-yogurt", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#flavored-yogurt", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#cow-dairy-product" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#cow-dairy-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1732,15 +1732,15 @@ "@value" : "yaourt aromatisé" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#flour", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#flour", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#dried_goods" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#dried_goods" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -1750,15 +1750,15 @@ "@value" : "flour" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#flower", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#flower", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#inedible" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#inedible" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -1768,15 +1768,15 @@ "@value" : "flower" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#fourth-range-vegetable", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#fourth-range-vegetable", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#vegetable" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1786,15 +1786,15 @@ "@value" : "légume de quatrième gamme" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#fresh-cheese", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#fresh-cheese", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#cow-dairy-product" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#cow-dairy-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1804,15 +1804,15 @@ "@value" : "fromage frais" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#fresh-cream", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#fresh-cream", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#cow-dairy-product" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#cow-dairy-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -1822,15 +1822,15 @@ "@value" : "fresh cream" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#fresh-meat", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#fresh-meat", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#pork" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#pork" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1840,21 +1840,21 @@ "@value" : "viande fraîche" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#frozen", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#frozen", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#frozen-fruit" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#frozen-fruit" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#frozen-meal" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#frozen-meal" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#frozen-meat" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#frozen-meat" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#frozen-vegetable" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#frozen-vegetable" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1864,18 +1864,18 @@ "@value" : "surgelé" } ], "http://www.w3.org/2004/02/skos/core#topConceptOf" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#frozen-fruit", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#frozen-fruit", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#frozen" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#frozen" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1885,15 +1885,15 @@ "@value" : "fruit surgelé" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#frozen-meal", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#frozen-meal", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#frozen" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#frozen" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1903,15 +1903,15 @@ "@value" : "plat surgelé" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#frozen-meat", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#frozen-meat", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#frozen" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#frozen" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1921,15 +1921,15 @@ "@value" : "viande surgelée" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#frozen-vegetable", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#frozen-vegetable", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#frozen" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#frozen" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1939,53 +1939,53 @@ "@value" : "légume surgelé" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#fruit", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#fruit", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#apples" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#apples" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#apricot" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#apricot" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#berry" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#berry" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#cherry" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#cherry" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#clementine" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#clementine" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#fig" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#fig" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#grape" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#grape" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#kiwi" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#kiwi" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#lemon" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#lemon" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#mandarin" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#mandarin" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#nectarine" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#nectarine" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#non-local-fruit" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#non-local-fruit" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#nut" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#nut" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#orange" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#orange" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#peach" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#peach" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#pear" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#pear" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#plum" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#plum" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#prune" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#prune" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#quince" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#quince" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#medlar" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#medlar" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1995,18 +1995,18 @@ "@value" : "fruits" } ], "http://www.w3.org/2004/02/skos/core#topConceptOf" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#fruit-in-compote", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#fruit-in-compote", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#processed-fruit" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#processed-fruit" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -2016,15 +2016,15 @@ "@value" : "fruit in compote" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#fruit-juice", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#fruit-juice", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#soft-drink" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#soft-drink" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2034,15 +2034,15 @@ "@value" : "jus de fruits" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#garlic", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#garlic", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#vegetable" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -2052,15 +2052,15 @@ "@value" : "garlic" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#girolle-mushroom", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#girolle-mushroom", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#mushroom" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#mushroom" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -2070,15 +2070,15 @@ "@value" : "girolle mushroom" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#goat-dairy-dessert", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#goat-dairy-dessert", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#goat-dairy-product" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#goat-dairy-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -2088,34 +2088,34 @@ "@value" : "goat dairy dessert" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#goat-dairy-product", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#goat-dairy-product", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#dairy-product" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#dairy-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#goat-dairy-dessert" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#goat-dairy-dessert" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#goat-flavored-yogurt" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#goat-flavored-yogurt" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#goat-fresh-cheese" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#goat-fresh-cheese" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#goat-mature-cheese" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#goat-mature-cheese" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#goat-milk" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#goat-milk" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#goat-natural-yogurt" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#goat-natural-yogurt" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#goat-sweet-yogurt" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#goat-sweet-yogurt" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#goat-yogurt-on-a-bed-of-fruit" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#goat-yogurt-on-a-bed-of-fruit" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#goat-yogurt-with-fruits" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#goat-yogurt-with-fruits" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2125,15 +2125,15 @@ "@value" : "produit laitier de chèvre" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#goat-flavored-yogurt", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#goat-flavored-yogurt", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#goat-dairy-product" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#goat-dairy-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2143,15 +2143,15 @@ "@value" : "yaourt de chèvre aromatisé" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#goat-fresh-cheese", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#goat-fresh-cheese", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#goat-dairy-product" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#goat-dairy-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -2161,15 +2161,15 @@ "@value" : "goat fresh cheese" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#goat-mature-cheese", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#goat-mature-cheese", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#goat-dairy-product" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#goat-dairy-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -2179,15 +2179,15 @@ "@value" : "goat mature cheese" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#goat-milk", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#goat-milk", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#goat-dairy-product" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#goat-dairy-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2197,15 +2197,15 @@ "@value" : "lait de chèvre" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#goat-natural-yogurt", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#goat-natural-yogurt", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#goat-dairy-product" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#goat-dairy-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2215,15 +2215,15 @@ "@value" : "yaourt nature de chèvre" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#goat-sweet-yogurt", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#goat-sweet-yogurt", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#goat-dairy-product" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#goat-dairy-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2233,15 +2233,15 @@ "@value" : "yaourt sucré de chèvre" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#goat-yogurt-on-a-bed-of-fruit", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#goat-yogurt-on-a-bed-of-fruit", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#goat-dairy-product" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#goat-dairy-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2251,15 +2251,15 @@ "@value" : "yaourt de chèvre sur lit de fruits" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#goat-yogurt-with-fruits", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#goat-yogurt-with-fruits", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#goat-dairy-product" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#goat-dairy-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2269,15 +2269,15 @@ "@value" : "yaourt de chèvre aux fruits" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#goose", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#goose", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#poultry" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#poultry" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2287,15 +2287,15 @@ "@value" : "oie" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#gooseberry", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#gooseberry", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#berry" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#berry" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2305,17 +2305,17 @@ "@value" : "groseille à maquereau" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#grain", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#grain", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#savory-groceries" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#savory-groceries" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#dried_goods" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#dried_goods" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -2325,15 +2325,15 @@ "@value" : "grain" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#grape", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#grape", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#fruit" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#fruit" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2343,15 +2343,15 @@ "@value" : "raisin" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#green-garlic", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#green-garlic", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#vegetable" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -2361,15 +2361,15 @@ "@value" : "green garlic" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#grilling-meat", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#grilling-meat", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#beef" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#beef" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2379,15 +2379,15 @@ "@value" : "viande à griller" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#guinea-fowl", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#guinea-fowl", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#poultry" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#poultry" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2397,15 +2397,15 @@ "@value" : "pintade" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#hazelnut", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#hazelnut", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#nut" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#nut" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2415,42 +2415,42 @@ "@value" : "noisette" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#herb", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#herb", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#vegetable" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#basil" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#basil" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#chervil" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#chervil" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#chilli-pepper" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#chilli-pepper" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#chive" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#chive" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#coriander" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#coriander" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#dill" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#dill" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#laurel" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#laurel" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#mint" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#mint" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#parsley" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#parsley" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#rosemary" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#rosemary" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#sage" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#sage" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#tarragon" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#tarragon" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#thyme" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#thyme" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -2460,15 +2460,15 @@ "@value" : "herb" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#hierloom-squash", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#hierloom-squash", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#squash" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#squash" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2478,15 +2478,15 @@ "@value" : "variété ancienne de courge" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#hierloom-tomato", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#hierloom-tomato", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#tomato" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#tomato" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2496,15 +2496,15 @@ "@value" : "tomate ancienne" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#honey", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#honey", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#sweet-groceries" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#sweet-groceries" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2514,19 +2514,19 @@ "@value" : "miel" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#inedible", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#inedible", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#cosmetic" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#cosmetic" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#flower" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#flower" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#plant" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#plant" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2536,18 +2536,18 @@ "@value" : "non alimentaire" } ], "http://www.w3.org/2004/02/skos/core#topConceptOf" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#jam", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#jam", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#sweet-groceries" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#sweet-groceries" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -2557,7 +2557,7 @@ "@value" : "jam" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#jerusalem-artichoke", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#jerusalem-artichoke", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], @@ -2566,10 +2566,10 @@ "@value" : "sunchoke" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#vegetable" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2579,15 +2579,15 @@ "@value" : "topinambour" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#kale", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#kale", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#cabbage" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#cabbage" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -2597,15 +2597,15 @@ "@value" : "curly kale" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#kale-cabbage", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#kale-cabbage", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#cabbage" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#cabbage" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -2615,15 +2615,15 @@ "@value" : "kale" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#kiwi", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#kiwi", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#fruit" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#fruit" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2633,15 +2633,15 @@ "@value" : "kiwi" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#kohlrabi", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#kohlrabi", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#cabbage" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#cabbage" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -2651,15 +2651,15 @@ "@value" : "kohlrabi" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#lamb", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#lamb", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#meat-product" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#meat-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -2669,15 +2669,15 @@ "@value" : "lamb" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#laurel", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#laurel", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#aromatic" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#aromatic" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2687,15 +2687,15 @@ "@value" : "laurier" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#leek", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#leek", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#vegetable" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2705,15 +2705,15 @@ "@value" : "poireau" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#lemon", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#lemon", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#fruit" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#fruit" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -2723,15 +2723,15 @@ "@value" : "lemon" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#lemonade", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#lemonade", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#soft-drink" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#soft-drink" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2741,15 +2741,15 @@ "@value" : "limonade" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#lentils", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#lentils", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#dried-vegetable" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#dried-vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -2759,15 +2759,15 @@ "@value" : "lentils" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#lettuce", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#lettuce", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#salad" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#salad" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -2777,25 +2777,25 @@ "@value" : "lettuce" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#local-grocery-store", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#local-grocery-store", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#processed-fruit" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#processed-fruit" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#processed-vegetable" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#processed-vegetable" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#ready-meal" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#ready-meal" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#savory-groceries" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#savory-groceries" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#sweet-groceries" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#sweet-groceries" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#dried_goods" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#dried_goods" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2805,18 +2805,18 @@ "@value" : "épicerie locale" } ], "http://www.w3.org/2004/02/skos/core#topConceptOf" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#mandarin", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#mandarin", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#fruit" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#fruit" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2826,15 +2826,15 @@ "@value" : "mandarine" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#mature-cheese", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#mature-cheese", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#cow-dairy-product" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#cow-dairy-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -2844,31 +2844,31 @@ "@value" : "mature cheese" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#meat-product", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#meat-product", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#beef" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#beef" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#egg" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#egg" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#fishery-product" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#fishery-product" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#lamb" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#lamb" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#pork" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#pork" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#poultry" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#poultry" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#rabbit" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#rabbit" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#snails" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#snails" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#veal" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#veal" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2878,18 +2878,18 @@ "@value" : "produit carné" } ], "http://www.w3.org/2004/02/skos/core#topConceptOf" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#medlar", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#medlar", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#fruit" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#fruit" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2899,15 +2899,15 @@ "@value" : "nèfle" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#melon", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#melon", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#vegetable" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2917,15 +2917,15 @@ "@value" : "melon" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#mesclun", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#mesclun", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#salad" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#salad" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2935,15 +2935,15 @@ "@value" : "mesclun" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#milk", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#milk", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#cow-dairy-product" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#cow-dairy-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -2953,15 +2953,15 @@ "@value" : "milk" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#milky-mushroom", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#milky-mushroom", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#mushroom" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#mushroom" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -2971,15 +2971,15 @@ "@value" : "milky mushroom" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#mint", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#mint", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#aromatic" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#aromatic" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -2989,15 +2989,15 @@ "@value" : "mint" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#morel", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#morel", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#mushroom" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#mushroom" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -3007,15 +3007,15 @@ "@value" : "morille" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#mousseron", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#mousseron", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#mushroom" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#mushroom" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -3025,42 +3025,42 @@ "@value" : "mousseron" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#mushroom", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#mushroom", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#vegetable" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#bluefoot-mushroom" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#bluefoot-mushroom" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#chanterelle-mushroom" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#chanterelle-mushroom" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#coulemelle-mushroom" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#coulemelle-mushroom" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#deaths-trumpet" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#deaths-trumpet" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#girolle-mushroom" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#girolle-mushroom" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#milky-mushroom" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#milky-mushroom" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#morel" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#morel" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#mousseron" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#mousseron" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#oyster-mushroom" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#oyster-mushroom" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#paris-mushroom" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#paris-mushroom" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#porcini" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#porcini" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#sheepfoot-mushroom" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#sheepfoot-mushroom" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#truffle" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#truffle" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -3070,15 +3070,15 @@ "@value" : "mushroom" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#natural-yogurt", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#natural-yogurt", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#cow-dairy-product" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#cow-dairy-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -3088,15 +3088,15 @@ "@value" : "yaourt nature" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#nectarine", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#nectarine", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#fruit" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#fruit" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -3106,15 +3106,15 @@ "@value" : "nectarine" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#non-local-fruit", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#non-local-fruit", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#fruit" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#fruit" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -3124,15 +3124,15 @@ "@value" : "non local fruit" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#non-local-vegetable", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#non-local-vegetable", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#vegetable" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -3142,26 +3142,26 @@ "@value" : "non local vegetable" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#nut", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#nut", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#fruit" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#fruit" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#almond" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#almond" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#chestnut" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#chestnut" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#hazelnut" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#hazelnut" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#medlar" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#medlar" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#walnut" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#walnut" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -3171,15 +3171,15 @@ "@value" : "nut" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#oil", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#oil", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#savory-groceries" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#savory-groceries" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -3189,15 +3189,15 @@ "@value" : "oil" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#onion", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#onion", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#vegetable" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -3207,15 +3207,15 @@ "@value" : "onion" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#orange", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#orange", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#fruit" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#fruit" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -3225,15 +3225,15 @@ "@value" : "orange" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#other-cheese", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#other-cheese", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#other-dairy-product" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#other-dairy-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -3243,20 +3243,20 @@ "@value" : "other cheese" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#other-dairy-product", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#other-dairy-product", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#dairy-product" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#dairy-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#other-cheese" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#other-cheese" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#other-milk" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#other-milk" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -3266,15 +3266,15 @@ "@value" : "other dairy product" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#other-milk", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#other-milk", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#other-dairy-product" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#other-dairy-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -3284,15 +3284,15 @@ "@value" : "other milk" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#oyster-mushroom", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#oyster-mushroom", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#mushroom" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#mushroom" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -3302,15 +3302,15 @@ "@value" : "pleurote" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#paris-mushroom", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#paris-mushroom", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#mushroom" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#mushroom" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -3320,15 +3320,15 @@ "@value" : "champignon de Paris" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#parsley", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#parsley", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#aromatic" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#aromatic" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -3338,15 +3338,15 @@ "@value" : "persil" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#parsnip", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#parsnip", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#vegetable" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -3356,15 +3356,15 @@ "@value" : "parsnip" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#pasta", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#pasta", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#savory-groceries" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#savory-groceries" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -3374,15 +3374,15 @@ "@value" : "pâtes" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#pastry", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#pastry", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#sweet-groceries" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#sweet-groceries" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -3392,15 +3392,15 @@ "@value" : "pâtisserie" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#pattypan-squash", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#pattypan-squash", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#squash" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#squash" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -3410,15 +3410,15 @@ "@value" : "pâtisson" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#peach", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#peach", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#fruit" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#fruit" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -3428,15 +3428,15 @@ "@value" : "pêche" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#pear", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#pear", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#fruit" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#fruit" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -3446,15 +3446,15 @@ "@value" : "poire" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#peas", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#peas", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#dried-vegetable" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#dried-vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -3464,15 +3464,15 @@ "@value" : "pois" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#pepper", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#pepper", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#vegetable" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -3482,15 +3482,15 @@ "@value" : "poivron" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#pie-pastry", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#pie-pastry", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#savory-groceries" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#savory-groceries" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -3500,15 +3500,15 @@ "@value" : "pâte à tarte" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#pigeon", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#pigeon", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#poultry" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#poultry" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -3518,15 +3518,15 @@ "@value" : "pigeon" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#plant", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#plant", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#inedible" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#inedible" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -3536,15 +3536,15 @@ "@value" : "plante" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#plum", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#plum", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#fruit" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#fruit" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -3554,15 +3554,15 @@ "@value" : "prune" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#porcini", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#porcini", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#mushroom" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#mushroom" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -3572,24 +3572,24 @@ "@value" : "porcini" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#pork", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#pork", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#meat-product" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#meat-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#cooked-meat" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#cooked-meat" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#delicatessen" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#delicatessen" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#fresh-meat" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#fresh-meat" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#salting" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#salting" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -3599,15 +3599,15 @@ "@value" : "pork" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#potato", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#potato", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#vegetable" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -3617,32 +3617,32 @@ "@value" : "potato" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#poultry", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#poultry", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#meat-product" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#meat-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#chicken" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#chicken" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#duck" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#duck" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#festive-poultry" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#festive-poultry" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#goose" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#goose" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#guinea-fowl" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#guinea-fowl" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#pigeon" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#pigeon" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#quail" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#quail" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#turkey" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#turkey" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -3652,24 +3652,24 @@ "@value" : "volaille" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#processed-fruit", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#processed-fruit", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#local-grocery-store" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#local-grocery-store" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#bottled-fruit" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#bottled-fruit" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#canned-fruit" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#canned-fruit" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#dried-fruit" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#dried-fruit" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#fruit-in-compote" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#fruit-in-compote" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -3679,22 +3679,22 @@ "@value" : "processed fruit" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#processed-vegetable", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#processed-vegetable", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#local-grocery-store" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#local-grocery-store" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#bottled-vegetable" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#bottled-vegetable" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#canned-vegetable" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#canned-vegetable" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#soup" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#soup" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -3704,15 +3704,15 @@ "@value" : "processed vegetable" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#prune", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#prune", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#fruit" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#fruit" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -3722,30 +3722,30 @@ "@value" : "pruneau" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#pulse", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#pulse", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#dried_goods" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#dried_goods" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", "@value" : "pulse" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#pumpkin", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#pumpkin", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#squash" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#squash" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -3755,15 +3755,15 @@ "@value" : "pumpkin" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#quail", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#quail", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#poultry" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#poultry" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -3773,15 +3773,15 @@ "@value" : "quail" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#quince", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#quince", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#fruit" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#fruit" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -3791,15 +3791,15 @@ "@value" : "quince" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#quinoa", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#quinoa", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#dried-vegetable" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#dried-vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -3809,15 +3809,15 @@ "@value" : "quinoa" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#rabbit", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#rabbit", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#meat-product" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#meat-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -3827,15 +3827,15 @@ "@value" : "rabbit" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#radish", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#radish", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#vegetable" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -3845,15 +3845,15 @@ "@value" : "radish" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#raspberry", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#raspberry", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#berry" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#berry" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -3863,15 +3863,15 @@ "@value" : "raspberry" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#ready-meal", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#ready-meal", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#local-grocery-store" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#local-grocery-store" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -3881,15 +3881,15 @@ "@value" : "ready meal" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#red-cabbage", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#red-cabbage", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#cabbage" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#cabbage" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -3899,15 +3899,15 @@ "@value" : "red cabbage" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#rhubarb", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#rhubarb", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#vegetable" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -3917,15 +3917,15 @@ "@value" : "rhubarbe" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#rice", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#rice", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#savory-groceries" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#savory-groceries" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -3935,15 +3935,15 @@ "@value" : "riz" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#rocket", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#rocket", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#salad" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#salad" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -3953,15 +3953,15 @@ "@value" : "roquette" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#romanesco", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#romanesco", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#cabbage" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#cabbage" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -3971,15 +3971,15 @@ "@value" : "romanesco cauliflower" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#rosemary", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#rosemary", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#aromatic" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#aromatic" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -3989,15 +3989,15 @@ "@value" : "rosemary" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#round-tomato", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#round-tomato", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#tomato" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#tomato" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -4007,7 +4007,7 @@ "@value" : "tomate ronde" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#rutabaga", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#rutabaga", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], @@ -4016,10 +4016,10 @@ "@value" : "swede" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#vegetable" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -4029,15 +4029,15 @@ "@value" : "rutabaga" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#sage", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#sage", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#aromatic" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#aromatic" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -4047,36 +4047,36 @@ "@value" : "sauge" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#salad", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#salad", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#vegetable" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#chicory" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#chicory" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#cress" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#cress" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#dandelion" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#dandelion" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#endive" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#endive" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#lettuce" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#lettuce" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#mesclun" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#mesclun" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#rocket" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#rocket" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#salad-mix" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#salad-mix" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#spinach" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#spinach" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#corn-salad" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#corn-salad" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -4086,15 +4086,15 @@ "@value" : "salade" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#salad-mix", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#salad-mix", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#salad" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#salad" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -4104,15 +4104,15 @@ "@value" : "salad mix" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#salsify", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#salsify", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#vegetable" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -4122,15 +4122,15 @@ "@value" : "salsify" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#salt", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#salt", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#savory-groceries" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#savory-groceries" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -4140,15 +4140,15 @@ "@value" : "sel" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#salting", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#salting", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#pork" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#pork" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -4158,38 +4158,38 @@ "@value" : "salting" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#savory-groceries", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#savory-groceries", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#local-grocery-store" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#local-grocery-store" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#crepe-and-galette" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#crepe-and-galette" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#oil" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#oil" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#pasta" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#pasta" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#pie-pastry" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#pie-pastry" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#rice" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#rice" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#salt" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#salt" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#semolina" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#semolina" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#grain" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#grain" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#cannedGoods" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#cannedGoods" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#snack" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#snack" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#ferment" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#ferment" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -4199,15 +4199,15 @@ "@value" : "épicerie salée" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#savoy-cabbage", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#savoy-cabbage", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#cabbage" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#cabbage" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -4217,15 +4217,15 @@ "@value" : "savoy cabbage" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#seashell", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#seashell", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#fishery-product" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#fishery-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -4235,15 +4235,15 @@ "@value" : "seashell" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#seed", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#seed", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#dried_goods" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#dried_goods" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -4253,7 +4253,7 @@ "@value" : "graine" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#semolina", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#semolina", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], @@ -4265,10 +4265,10 @@ "@value" : "grist" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#savory-groceries" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#savory-groceries" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -4278,15 +4278,15 @@ "@value" : "semoule" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#shallot", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#shallot", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#vegetable" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -4296,15 +4296,15 @@ "@value" : "échalote" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#sheep-dairy-dessert", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#sheep-dairy-dessert", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#sheep-dairy-product" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#sheep-dairy-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -4314,34 +4314,34 @@ "@value" : "sheep dairy dessert" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#sheep-dairy-product", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#sheep-dairy-product", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#dairy-product" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#dairy-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#sheep-dairy-dessert" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#sheep-dairy-dessert" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#sheep-flavored-yogurt" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#sheep-flavored-yogurt" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#sheep-fresh-cheese" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#sheep-fresh-cheese" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#sheep-mature-cheese" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#sheep-mature-cheese" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#sheep-milk" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#sheep-milk" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#sheep-natural-yogurt" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#sheep-natural-yogurt" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#sheep-sweet-yogurt" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#sheep-sweet-yogurt" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#sheep-yogurt-on-a-bed-of-fruit" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#sheep-yogurt-on-a-bed-of-fruit" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#sheep-yogurt-with-fruits" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#sheep-yogurt-with-fruits" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -4351,15 +4351,15 @@ "@value" : "sheep dairy product" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#sheep-flavored-yogurt", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#sheep-flavored-yogurt", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#sheep-dairy-product" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#sheep-dairy-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -4369,15 +4369,15 @@ "@value" : "yaourt de brebis aromatisé" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#sheep-fresh-cheese", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#sheep-fresh-cheese", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#sheep-dairy-product" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#sheep-dairy-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -4387,15 +4387,15 @@ "@value" : "sheep fresh cheese" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#sheep-mature-cheese", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#sheep-mature-cheese", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#sheep-dairy-product" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#sheep-dairy-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -4405,15 +4405,15 @@ "@value" : "sheep mature cheese" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#sheep-milk", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#sheep-milk", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#sheep-dairy-product" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#sheep-dairy-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -4423,15 +4423,15 @@ "@value" : "sheep milk" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#sheep-natural-yogurt", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#sheep-natural-yogurt", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#sheep-dairy-product" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#sheep-dairy-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -4441,15 +4441,15 @@ "@value" : "yaourt de brebis nature" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#sheep-sweet-yogurt", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#sheep-sweet-yogurt", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#sheep-dairy-product" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#sheep-dairy-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -4459,15 +4459,15 @@ "@value" : "yaourt sucré de brebis" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#sheep-yogurt-on-a-bed-of-fruit", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#sheep-yogurt-on-a-bed-of-fruit", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#sheep-dairy-product" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#sheep-dairy-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -4477,15 +4477,15 @@ "@value" : "yaourt de brebis sur lit de fruits" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#sheep-yogurt-with-fruits", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#sheep-yogurt-with-fruits", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#sheep-dairy-product" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#sheep-dairy-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -4495,15 +4495,15 @@ "@value" : "yaourt de brebis aux fruits" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#sheepfoot-mushroom", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#sheepfoot-mushroom", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#mushroom" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#mushroom" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -4513,15 +4513,15 @@ "@value" : "sheepfoot mushroom" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#shellfish", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#shellfish", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#fishery-product" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#fishery-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -4531,15 +4531,15 @@ "@value" : "shellfish" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#simmering-meat", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#simmering-meat", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#beef" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#beef" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -4549,15 +4549,15 @@ "@value" : "viande à mijoter" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#smooth-cabbage", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#smooth-cabbage", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#cabbage" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#cabbage" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -4567,15 +4567,15 @@ "@value" : "smooth cabbage" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#smoothie", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#smoothie", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#soft-drink" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#soft-drink" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -4585,30 +4585,30 @@ "@value" : "smoothie" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#snack", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#snack", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#savory-groceries" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#savory-groceries" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", "@value" : "snack" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#snails", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#snails", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#meat-product" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#meat-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -4618,22 +4618,22 @@ "@value" : "snails" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#soft-drink", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#soft-drink", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#drink" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#drink" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#fruit-juice" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#fruit-juice" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#lemonade" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#lemonade" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#smoothie" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#smoothie" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -4643,15 +4643,15 @@ "@value" : "soft drink" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#soup", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#soup", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#processed-vegetable" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#processed-vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -4661,15 +4661,15 @@ "@value" : "soupe" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#spinach", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#spinach", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#salad" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#salad" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -4679,26 +4679,26 @@ "@value" : "épinards" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#squash", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#squash", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#vegetable" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#butternut" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#butternut" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#hierloom-squash" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#hierloom-squash" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#pattypan-squash" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#pattypan-squash" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#pumpkin" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#pumpkin" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#uchiki-kuri-squash" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#uchiki-kuri-squash" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -4708,15 +4708,15 @@ "@value" : "squash" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#strawberry", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#strawberry", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#berry" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#berry" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -4726,26 +4726,26 @@ "@value" : "strawberry" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#sweet-groceries", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#sweet-groceries", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#local-grocery-store" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#local-grocery-store" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#biscuit" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#biscuit" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#confectionery" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#confectionery" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#honey" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#honey" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#jam" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#jam" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#pastry" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#pastry" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -4755,15 +4755,15 @@ "@value" : "épicerie sucrée" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#sweet-yogurt", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#sweet-yogurt", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#cow-dairy-product" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#cow-dairy-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -4773,15 +4773,15 @@ "@value" : "yaourt sucré" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#tarragon", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#tarragon", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#aromatic" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#aromatic" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -4791,15 +4791,15 @@ "@value" : "tarragon" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#thyme", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#thyme", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#aromatic" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#aromatic" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -4809,24 +4809,24 @@ "@value" : "thyme" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#tomato", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#tomato", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#vegetable" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#cherry-tomato" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#cherry-tomato" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#cluster-tomato" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#cluster-tomato" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#round-tomato" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#round-tomato" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#hierloom-tomato" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#hierloom-tomato" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -4836,15 +4836,15 @@ "@value" : "tomato" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#truffle", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#truffle", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#mushroom" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#mushroom" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -4854,15 +4854,15 @@ "@value" : "truffle" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#turkey", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#turkey", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#poultry" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#poultry" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -4872,15 +4872,15 @@ "@value" : "turkey" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#turnip", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#turnip", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#vegetable" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -4890,15 +4890,15 @@ "@value" : "turnip" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#uchiki-kuri-squash", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#uchiki-kuri-squash", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#squash" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#squash" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -4908,15 +4908,15 @@ "@value" : "uchiki kuri squash" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#veal", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#veal", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#meat-product" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#meat-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -4926,89 +4926,89 @@ "@value" : "veau" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#vegetable", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#vegetable", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#artichoke" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#artichoke" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#asparagus" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#asparagus" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#bean" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#bean" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#beetroot" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#beetroot" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#cabbage" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#cabbage" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#carrot" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#carrot" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#celeriac" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#celeriac" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#celery-branch" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#celery-branch" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#chard" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#chard" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#courgette" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#courgette" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#cucumber" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#cucumber" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#dried-vegetable" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#dried-vegetable" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#eggplant" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#eggplant" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#fennel" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#fennel" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#fifth-range-vegetable" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#fifth-range-vegetable" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#fourth-range-vegetable" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#fourth-range-vegetable" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#garlic" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#garlic" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#green-garlic" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#green-garlic" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#herb" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#herb" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#jerusalem-artichoke" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#jerusalem-artichoke" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#leek" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#leek" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#melon" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#melon" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#mushroom" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#mushroom" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#non-local-vegetable" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#non-local-vegetable" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#onion" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#onion" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#parsnip" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#parsnip" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#pepper" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#pepper" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#potato" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#potato" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#radish" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#radish" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#rhubarb" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#rhubarb" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#rutabaga" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#rutabaga" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#salad" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#salad" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#salsify" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#salsify" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#shallot" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#shallot" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#squash" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#squash" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#tomato" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#tomato" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#turnip" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#turnip" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#yam" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#yam" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -5018,18 +5018,18 @@ "@value" : "vegetable" } ], "http://www.w3.org/2004/02/skos/core#topConceptOf" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#viennoiserie-", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#viennoiserie-", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#bakery" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#bakery" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -5039,15 +5039,15 @@ "@value" : "viennoiserie" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#walnut", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#walnut", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#nut" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#nut" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -5057,15 +5057,15 @@ "@value" : "walnut" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#wine", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#wine", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#alcoholic-beverage" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#alcoholic-beverage" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -5075,7 +5075,7 @@ "@value" : "wine" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#yam", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#yam", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], @@ -5084,10 +5084,10 @@ "@value" : "Sweet Potato" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#vegetable" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -5097,15 +5097,15 @@ "@value" : "yam" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#yogurt-on-a-bed-of-fruit", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#yogurt-on-a-bed-of-fruit", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#cow-dairy-product" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#cow-dairy-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -5115,15 +5115,15 @@ "@value" : "yogurt on a bed of fruit" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#yogurt-with-fruits", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#yogurt-with-fruits", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#cow-dairy-product" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf#cow-dairy-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -5133,5 +5133,5 @@ "@value" : "yogurt with fruits" } ] } ], - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/productTypes.rdf" } ] \ No newline at end of file diff --git a/src/org/datafoodconsortium/connector/codegen/typescript/static/test/thesaurus/vocabulary.json b/src/org/datafoodconsortium/connector/codegen/typescript/static/test/thesaurus/vocabulary.json index f14148a..e71f094 100644 --- a/src/org/datafoodconsortium/connector/codegen/typescript/static/test/thesaurus/vocabulary.json +++ b/src/org/datafoodconsortium/connector/codegen/typescript/static/test/thesaurus/vocabulary.json @@ -1,413 +1,413 @@ [ { "@graph" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/vocabulary.rdf#", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/vocabulary.rdf#", "@type" : [ "http://www.w3.org/2002/07/owl#Ontology" ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/vocabulary.rdf#Cancelled", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/vocabulary.rdf#Cancelled", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/vocabulary.rdf#OrderState" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/vocabulary.rdf#OrderState" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/vocabulary.rdf#PaymentState" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/vocabulary.rdf#PaymentState" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/vocabulary.rdf#FulfilmentState" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/vocabulary.rdf#FulfilmentState" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/vocabulary.rdf#DFC_Vocabulary" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/vocabulary.rdf#DFC_Vocabulary" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", "@value" : "Cancelled" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/vocabulary.rdf#Complete", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/vocabulary.rdf#Complete", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/vocabulary.rdf#OrderState" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/vocabulary.rdf#OrderState" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/vocabulary.rdf#DFC_Vocabulary" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/vocabulary.rdf#DFC_Vocabulary" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", "@value" : "Complete" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/vocabulary.rdf#DFC_Vocabulary", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/vocabulary.rdf#DFC_Vocabulary", "@type" : [ "http://www.w3.org/2004/02/skos/core#ConceptScheme" ], "http://www.w3.org/2004/02/skos/core#hasTopConcept" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/vocabulary.rdf#States" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/vocabulary.rdf#States" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/vocabulary.rdf#transformationType" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/vocabulary.rdf#transformationType" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", "@value" : "DFC_Vocabulary" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/vocabulary.rdf#Draft", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/vocabulary.rdf#Draft", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/vocabulary.rdf#OrderState" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/vocabulary.rdf#OrderState" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/vocabulary.rdf#DFC_Vocabulary" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/vocabulary.rdf#DFC_Vocabulary" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", "@value" : "Draft" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/vocabulary.rdf#Fulfilled", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/vocabulary.rdf#Fulfilled", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/vocabulary.rdf#FulfilmentState" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/vocabulary.rdf#FulfilmentState" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/vocabulary.rdf#DFC_Vocabulary" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/vocabulary.rdf#DFC_Vocabulary" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", "@value" : "Fulfilled" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/vocabulary.rdf#FulfilmentState", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/vocabulary.rdf#FulfilmentState", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/vocabulary.rdf#States" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/vocabulary.rdf#States" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/vocabulary.rdf#DFC_Vocabulary" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/vocabulary.rdf#DFC_Vocabulary" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/vocabulary.rdf#Cancelled" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/vocabulary.rdf#Cancelled" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/vocabulary.rdf#Held" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/vocabulary.rdf#Held" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/vocabulary.rdf#Unfulfilled" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/vocabulary.rdf#Unfulfilled" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/vocabulary.rdf#Fulfilled" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/vocabulary.rdf#Fulfilled" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", "@value" : "Fulfilment state" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/vocabulary.rdf#Held", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/vocabulary.rdf#Held", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/vocabulary.rdf#OrderState" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/vocabulary.rdf#OrderState" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/vocabulary.rdf#FulfilmentState" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/vocabulary.rdf#FulfilmentState" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/vocabulary.rdf#DFC_Vocabulary" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/vocabulary.rdf#DFC_Vocabulary" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", "@value" : "Held" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/vocabulary.rdf#OrderState", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/vocabulary.rdf#OrderState", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/vocabulary.rdf#States" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/vocabulary.rdf#States" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/vocabulary.rdf#DFC_Vocabulary" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/vocabulary.rdf#DFC_Vocabulary" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/vocabulary.rdf#Cancelled" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/vocabulary.rdf#Cancelled" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/vocabulary.rdf#Held" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/vocabulary.rdf#Held" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/vocabulary.rdf#Complete" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/vocabulary.rdf#Complete" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/vocabulary.rdf#Draft" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/vocabulary.rdf#Draft" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", "@value" : "Order state" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/vocabulary.rdf#Paid", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/vocabulary.rdf#Paid", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/vocabulary.rdf#PaymentState" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/vocabulary.rdf#PaymentState" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/vocabulary.rdf#DFC_Vocabulary" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/vocabulary.rdf#DFC_Vocabulary" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", "@value" : "Paid" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/vocabulary.rdf#PaymentState", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/vocabulary.rdf#PaymentState", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/vocabulary.rdf#States" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/vocabulary.rdf#States" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/vocabulary.rdf#DFC_Vocabulary" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/vocabulary.rdf#DFC_Vocabulary" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/vocabulary.rdf#Cancelled" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/vocabulary.rdf#Cancelled" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/vocabulary.rdf#Paid" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/vocabulary.rdf#Paid" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/vocabulary.rdf#Unpaid" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/vocabulary.rdf#Unpaid" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", "@value" : "Payment state" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/vocabulary.rdf#States", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/vocabulary.rdf#States", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/vocabulary.rdf#DFC_Vocabulary" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/vocabulary.rdf#DFC_Vocabulary" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/vocabulary.rdf#OrderState" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/vocabulary.rdf#OrderState" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/vocabulary.rdf#PaymentState" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/vocabulary.rdf#PaymentState" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/vocabulary.rdf#FulfilmentState" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/vocabulary.rdf#FulfilmentState" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", "@value" : "States" } ], "http://www.w3.org/2004/02/skos/core#topConceptOf" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/vocabulary.rdf#DFC_Vocabulary" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/vocabulary.rdf#DFC_Vocabulary" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/vocabulary.rdf#Unfulfilled", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/vocabulary.rdf#Unfulfilled", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/vocabulary.rdf#FulfilmentState" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/vocabulary.rdf#FulfilmentState" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/vocabulary.rdf#DFC_Vocabulary" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/vocabulary.rdf#DFC_Vocabulary" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", "@value" : "Unfulfilled" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/vocabulary.rdf#Unpaid", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/vocabulary.rdf#Unpaid", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/vocabulary.rdf#PaymentState" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/vocabulary.rdf#PaymentState" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/vocabulary.rdf#DFC_Vocabulary" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/vocabulary.rdf#DFC_Vocabulary" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", "@value" : "Unpaid" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/vocabulary.rdf#accept", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/vocabulary.rdf#accept", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/vocabulary.rdf#transformationType" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/vocabulary.rdf#transformationType" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/vocabulary.rdf#DFC_Vocabulary" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/vocabulary.rdf#DFC_Vocabulary" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", "@value" : "accept" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/vocabulary.rdf#c_734fc709", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/vocabulary.rdf#c_734fc709", "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", "@value" : "FulfilmentState" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/vocabulary.rdf#combine", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/vocabulary.rdf#combine", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/vocabulary.rdf#transformationType" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/vocabulary.rdf#transformationType" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/vocabulary.rdf#DFC_Vocabulary" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/vocabulary.rdf#DFC_Vocabulary" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", "@value" : "combine" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/vocabulary.rdf#consume", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/vocabulary.rdf#consume", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/vocabulary.rdf#transformationType" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/vocabulary.rdf#transformationType" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/vocabulary.rdf#DFC_Vocabulary" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/vocabulary.rdf#DFC_Vocabulary" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", "@value" : "consume" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/vocabulary.rdf#dropoff", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/vocabulary.rdf#dropoff", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/vocabulary.rdf#transformationType" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/vocabulary.rdf#transformationType" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/vocabulary.rdf#DFC_Vocabulary" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/vocabulary.rdf#DFC_Vocabulary" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", "@value" : "dropoff" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/vocabulary.rdf#lower", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/vocabulary.rdf#lower", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/vocabulary.rdf#transformationType" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/vocabulary.rdf#transformationType" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/vocabulary.rdf#DFC_Vocabulary" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/vocabulary.rdf#DFC_Vocabulary" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", "@value" : "lower" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/vocabulary.rdf#modify", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/vocabulary.rdf#modify", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/vocabulary.rdf#transformationType" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/vocabulary.rdf#transformationType" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/vocabulary.rdf#DFC_Vocabulary" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/vocabulary.rdf#DFC_Vocabulary" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", "@value" : "modify" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/vocabulary.rdf#move", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/vocabulary.rdf#move", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/vocabulary.rdf#transformationType" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/vocabulary.rdf#transformationType" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/vocabulary.rdf#DFC_Vocabulary" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/vocabulary.rdf#DFC_Vocabulary" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", "@value" : "move" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/vocabulary.rdf#pickup", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/vocabulary.rdf#pickup", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/vocabulary.rdf#transformationType" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/vocabulary.rdf#transformationType" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/vocabulary.rdf#DFC_Vocabulary" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/vocabulary.rdf#DFC_Vocabulary" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", "@value" : "pickup" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/vocabulary.rdf#produce", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/vocabulary.rdf#produce", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/vocabulary.rdf#transformationType" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/vocabulary.rdf#transformationType" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/vocabulary.rdf#DFC_Vocabulary" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/vocabulary.rdf#DFC_Vocabulary" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", "@value" : "produce" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/vocabulary.rdf#raise", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/vocabulary.rdf#raise", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/vocabulary.rdf#transformationType" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/vocabulary.rdf#transformationType" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/vocabulary.rdf#DFC_Vocabulary" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/vocabulary.rdf#DFC_Vocabulary" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", "@value" : "raise" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/vocabulary.rdf#separate", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/vocabulary.rdf#separate", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/vocabulary.rdf#transformationType" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/vocabulary.rdf#transformationType" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/vocabulary.rdf#DFC_Vocabulary" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/vocabulary.rdf#DFC_Vocabulary" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", "@value" : "separate" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/vocabulary.rdf#transformationType", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/vocabulary.rdf#transformationType", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/vocabulary.rdf#DFC_Vocabulary" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/vocabulary.rdf#DFC_Vocabulary" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/vocabulary.rdf#produce" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/vocabulary.rdf#produce" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/vocabulary.rdf#use" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/vocabulary.rdf#use" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/vocabulary.rdf#consume" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/vocabulary.rdf#consume" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/vocabulary.rdf#pickup" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/vocabulary.rdf#pickup" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/vocabulary.rdf#dropoff" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/vocabulary.rdf#dropoff" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/vocabulary.rdf#accept" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/vocabulary.rdf#accept" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/vocabulary.rdf#modify" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/vocabulary.rdf#modify" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/vocabulary.rdf#combine" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/vocabulary.rdf#combine" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/vocabulary.rdf#separate" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/vocabulary.rdf#separate" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/vocabulary.rdf#move" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/vocabulary.rdf#move" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/vocabulary.rdf#raise" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/vocabulary.rdf#raise" }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/vocabulary.rdf#lower" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/vocabulary.rdf#lower" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", "@value" : "Transformation type" } ], "http://www.w3.org/2004/02/skos/core#topConceptOf" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/vocabulary.rdf#DFC_Vocabulary" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/vocabulary.rdf#DFC_Vocabulary" } ] }, { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/vocabulary.rdf#use", + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/vocabulary.rdf#use", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/vocabulary.rdf#transformationType" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/vocabulary.rdf#transformationType" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/vocabulary.rdf#DFC_Vocabulary" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/vocabulary.rdf#DFC_Vocabulary" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", "@value" : "use" } ] } ], - "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/vocabulary.rdf#" + "@id" : "http://w3id.org/dfc/taxonomies/v2.0.0/vocabulary.rdf#" } ] \ No newline at end of file