From 6e34c41f429c4d96a56eb78cef7d504e9275088f Mon Sep 17 00:00:00 2001 From: Maikel Linke Date: Thu, 16 Nov 2023 11:39:43 +1100 Subject: [PATCH] Bump DFC taxonomies to v1.0.2 Finally replacing the last of the old DFC context URLs that are not valid any more. --- .../services/quantitative_value_builder.rb | 11 +- .../connector/connector.rb | 8 + .../script/update-dfc-vocabularies | 7 +- .../connector/importer_spec.rb | 2 +- .../quantitative_value_builder_spec.rb | 2 +- engines/dfc_provider/vendor/facets.json | 1248 +++++----- engines/dfc_provider/vendor/measures.json | 1660 ++++++------- engines/dfc_provider/vendor/productTypes.json | 2110 +++++++++-------- swagger/dfc.yaml | 8 +- 9 files changed, 2585 insertions(+), 2471 deletions(-) diff --git a/engines/dfc_provider/app/services/quantitative_value_builder.rb b/engines/dfc_provider/app/services/quantitative_value_builder.rb index b3328713e3..3779463115 100644 --- a/engines/dfc_provider/app/services/quantitative_value_builder.rb +++ b/engines/dfc_provider/app/services/quantitative_value_builder.rb @@ -19,11 +19,11 @@ class QuantitativeValueBuilder < DfcBuilder def self.unit(variant) case variant.product.variant_unit when "volume" - DfcLoader.connector.MEASURES.UNIT.QUANTITYUNIT.LITRE + DfcLoader.connector.MEASURES.LITRE when "weight" - DfcLoader.connector.MEASURES.UNIT.QUANTITYUNIT.GRAM + DfcLoader.connector.MEASURES.GRAM else - DfcLoader.connector.MEASURES.UNIT.QUANTITYUNIT.PIECE + DfcLoader.connector.MEASURES.PIECE end end @@ -67,7 +67,7 @@ class QuantitativeValueBuilder < DfcBuilder # # Until then, we can ignore Rubocop metrics, IMO. def self.map_unit(unit) # rubocop:disable Metrics/CyclomaticComplexity, Metrics/MethodLength - quantity_unit = DfcLoader.connector.MEASURES.UNIT.QUANTITYUNIT + quantity_unit = DfcLoader.connector.MEASURES # The unit name is only set for items. The name is implied for weight and # volume and filled in by `WeightsAndMeasures`. @@ -110,7 +110,8 @@ class QuantitativeValueBuilder < DfcBuilder else # Labels may be provided one day: # https://github.com/datafoodconsortium/connector-ruby/issues/18 - label = unit.try(:semanticId)&.split("#")&.last || "items" + unit_id = unit.try(:semanticId)&.split("#")&.last&.split(":")&.last + label = unit_id || "items" ["items", label, 1] end end diff --git a/engines/dfc_provider/lib/data_food_consortium/connector/connector.rb b/engines/dfc_provider/lib/data_food_consortium/connector/connector.rb index fd480f4fb6..2d657a33bc 100644 --- a/engines/dfc_provider/lib/data_food_consortium/connector/connector.rb +++ b/engines/dfc_provider/lib/data_food_consortium/connector/connector.rb @@ -13,6 +13,14 @@ module DataFoodConsortium def import(json_string_or_io) Importer.new.import(json_string_or_io) end + + # Monkey patch private method until fixed upstream: + # https://github.com/datafoodconsortium/connector-ruby/issues/19 + def loadThesaurus(data) # rubocop:disable Naming/MethodName + # The root element may be an array or the ontology. + data = data[0] if data.is_a?(Array) + @parser.parse(data["@graph"]) + end end end end diff --git a/engines/dfc_provider/script/update-dfc-vocabularies b/engines/dfc_provider/script/update-dfc-vocabularies index 05a7aff22d..1097b06044 100755 --- a/engines/dfc_provider/script/update-dfc-vocabularies +++ b/engines/dfc_provider/script/update-dfc-vocabularies @@ -2,9 +2,10 @@ set -e +src="https://github.com/datafoodconsortium/taxonomies/releases/latest/download" dst="`dirname $0`/../vendor" mkdir -p "$dst" -curl 'http://static.datafoodconsortium.org/data/facets.json' > "$dst/facets.json" -curl 'http://static.datafoodconsortium.org/data/measures.json' > "$dst/measures.json" -curl 'http://static.datafoodconsortium.org/data/productTypes.json' > "$dst/productTypes.json" +curl --location "$src/facets.json" > "$dst/facets.json" +curl --location "$src/measures.json" > "$dst/measures.json" +curl --location "$src/productTypes.json" > "$dst/productTypes.json" diff --git a/engines/dfc_provider/spec/lib/data_food_consortium/connector/importer_spec.rb b/engines/dfc_provider/spec/lib/data_food_consortium/connector/importer_spec.rb index a2202db015..7da3fdd88b 100644 --- a/engines/dfc_provider/spec/lib/data_food_consortium/connector/importer_spec.rb +++ b/engines/dfc_provider/spec/lib/data_food_consortium/connector/importer_spec.rb @@ -94,7 +94,7 @@ describe DataFoodConsortium::Connector::Importer do unless connector.MEASURES.respond_to?(:UNIT) connector.loadMeasures(read_file("measures")) end - connector.MEASURES.UNIT.QUANTITYUNIT.PIECE + connector.MEASURES.PIECE end it "imports a single object with simple properties" do diff --git a/engines/dfc_provider/spec/services/quantitative_value_builder_spec.rb b/engines/dfc_provider/spec/services/quantitative_value_builder_spec.rb index 20b3f46d1e..39f2a8d8a7 100644 --- a/engines/dfc_provider/spec/services/quantitative_value_builder_spec.rb +++ b/engines/dfc_provider/spec/services/quantitative_value_builder_spec.rb @@ -45,7 +45,7 @@ describe QuantitativeValueBuilder do end describe ".apply" do - let(:quantity_unit) { DfcLoader.connector.MEASURES.UNIT.QUANTITYUNIT } + let(:quantity_unit) { DfcLoader.connector.MEASURES } let(:product) { Spree::Product.new } it "uses items for anything unknown" do diff --git a/engines/dfc_provider/vendor/facets.json b/engines/dfc_provider/vendor/facets.json index feb88e8187..ca3dd5c38a 100644 --- a/engines/dfc_provider/vendor/facets.json +++ b/engines/dfc_provider/vendor/facets.json @@ -1,6 +1,9 @@ [ { "@graph" : [ { - "@id" : "dfc-f:AOC_FR", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf", + "@type" : [ "http://www.w3.org/2002/07/owl#Ontology" ] + }, { + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" @@ -10,10 +13,10 @@ "@value" : "AOC" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "dfc-f:LocalLabel" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#LocalLabel" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -23,7 +26,7 @@ "@value" : "Appellation d’origine contrôlée" } ] }, { - "@id" : "dfc-f:AOP_EU", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" @@ -36,10 +39,10 @@ "@value" : "AOP" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "dfc-f:LocalLabel" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#LocalLabel" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -49,16 +52,16 @@ "@value" : "Appellation d’origine protégée" } ] }, { - "@id" : "dfc-f:Africa", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "dfc-f:TerritorialOrigin" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#TerritorialOrigin" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -68,13 +71,13 @@ "@value" : "Afrique" } ] }, { - "@id" : "dfc-f:Algae", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Algae", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "dfc-f:NatureOrigin" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NatureOrigin" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -84,13 +87,13 @@ "@value" : "Algue" } ] }, { - "@id" : "dfc-f:AnimalOrigin", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#AnimalOrigin", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "dfc-f:NatureOrigin" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NatureOrigin" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -100,34 +103,34 @@ "@value" : "Animal" } ] }, { - "@id" : "dfc-f:AnimalPartOrigin", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#AnimalPartOrigin", "@type" : [ "skos:Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "dfc-f:PartOrigin" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#PartOrigin" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "dfc-f:Bee" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Bee" }, { - "@id" : "dfc-f:Bull" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Bull" }, { - "@id" : "dfc-f:Cow" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Cow" }, { - "@id" : "dfc-f:Ewe" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Ewe" }, { - "@id" : "dfc-f:Goat" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Goat" }, { - "@id" : "dfc-f:Hen" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Hen" }, { - "@id" : "dfc-f:Pig" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Pig" }, { - "@id" : "dfc-f:Quail" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Quail" }, { - "@id" : "dfc-f:Roster" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Roster" }, { - "@id" : "dfc-f:Sheep" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Sheep" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -137,16 +140,16 @@ "@value" : "Partie ou produit d'un animal" } ] }, { - "@id" : "dfc-f:Asia", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "dfc-f:TerritorialOrigin" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#TerritorialOrigin" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -156,16 +159,16 @@ "@value" : "Asie" } ] }, { - "@id" : "dfc-f:Australia", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "dfc-f:Oceania" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Oceania" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -175,7 +178,7 @@ "@value" : "Australie" } ] }, { - "@id" : "dfc-f:AuvergneRhoneAlpes", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" @@ -185,10 +188,10 @@ "@value" : "ARA" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "dfc-f:France" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#France" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -198,13 +201,13 @@ "@value" : "Auvergne-Rhône-Alpes" } ] }, { - "@id" : "dfc-f:Bacteria", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Bacteria", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "dfc-f:NatureOrigin" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NatureOrigin" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -214,24 +217,24 @@ "@value" : "Bactérie" } ] }, { - "@id" : "dfc-f:Bee", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Bee", "@type" : [ "skos:Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "dfc-f:AnimalPartOrigin" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#AnimalPartOrigin" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "dfc-f:BeeHoney" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#BeeHoney" }, { - "@id" : "dfc-f:BeePollen" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#BeePollen" }, { - "@id" : "dfc-f:BeePropolis" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#BeePropolis" }, { - "@id" : "dfc-f:BeeVenom" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#BeeVenom" }, { - "@id" : "dfc-f:BeeWax" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#BeeWax" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -241,13 +244,13 @@ "@value" : "Bee" } ] }, { - "@id" : "dfc-f:BeeHoney", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#BeeHoney", "@type" : [ "skos:Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "dfc-f:Bee" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Bee" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -257,13 +260,13 @@ "@value" : "Miel" } ] }, { - "@id" : "dfc-f:BeePollen", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#BeePollen", "@type" : [ "skos:Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "dfc-f:Bee" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Bee" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -273,13 +276,13 @@ "@value" : "Pollen" } ] }, { - "@id" : "dfc-f:BeePropolis", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#BeePropolis", "@type" : [ "skos:Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "dfc-f:Bee" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Bee" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -289,13 +292,13 @@ "@value" : "Propolis" } ] }, { - "@id" : "dfc-f:BeeVenom", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#BeeVenom", "@type" : [ "skos:Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "dfc-f:Bee" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Bee" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -305,13 +308,13 @@ "@value" : "Venom" } ] }, { - "@id" : "dfc-f:BeeWax", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#BeeWax", "@type" : [ "skos:Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "dfc-f:Bee" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Bee" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -321,16 +324,16 @@ "@value" : "Wax" } ] }, { - "@id" : "dfc-f:Belgium", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "dfc-f:Europe" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Europe" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -340,16 +343,16 @@ "@value" : "Belgique" } ] }, { - "@id" : "dfc-f:BiodynamicLabel", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#BiodynamicLabel", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "dfc-f:Certification" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Certification" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "dfc-f:Demeter" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Demeter" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -359,16 +362,16 @@ "@value" : "Label biodynamie" } ] }, { - "@id" : "dfc-f:BleuBlancCoeur_FR", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "dfc-f:EthicalLabel" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#EthicalLabel" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -378,7 +381,7 @@ "@value" : "Bleu-Blanc-Coeur" } ] }, { - "@id" : "dfc-f:BourgogneFrancheComte", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" @@ -388,10 +391,10 @@ "@value" : "Burgundy-Franche-Comté" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "dfc-f:France" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#France" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -401,16 +404,16 @@ "@value" : "Bourgogne-Franche-Comté" } ] }, { - "@id" : "dfc-f:Brittany", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "dfc-f:France" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#France" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -420,13 +423,13 @@ "@value" : "Bretagne" } ] }, { - "@id" : "dfc-f:Bulb", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Bulb", "@type" : [ "skos:Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "dfc-f:PlantPartOrigin" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#PlantPartOrigin" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -436,16 +439,16 @@ "@value" : "Bulbe" } ] }, { - "@id" : "dfc-f:Bull", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Bull", "@type" : [ "skos:Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "dfc-f:AnimalPartOrigin" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#AnimalPartOrigin" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "dfc-f:BullBody" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#BullBody" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -455,13 +458,13 @@ "@value" : "Bœuf" } ] }, { - "@id" : "dfc-f:BullBody", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#BullBody", "@type" : [ "skos:Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "dfc-f:Bull" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Bull" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -471,7 +474,7 @@ "@value" : "Partie du boeuf" } ] }, { - "@id" : "dfc-f:CentreValLoire", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" @@ -481,10 +484,10 @@ "@value" : "Centre Loire Valley" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "dfc-f:France" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#France" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -494,7 +497,7 @@ "@value" : "Centre-Val de Loire" } ] }, { - "@id" : "dfc-f:Certification", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Certification", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://purl.org/dc/terms/description" : [ { "@language" : "en", @@ -504,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" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "dfc-f:OrganicLabel" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#OrganicLabel" }, { - "@id" : "dfc-f:LocalLabel" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#LocalLabel" }, { - "@id" : "dfc-f:BiodynamicLabel" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#BiodynamicLabel" }, { - "@id" : "dfc-f:EthicalLabel" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#EthicalLabel" }, { - "@id" : "dfc-f:MarketingLabel" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#MarketingLabel" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -525,10 +528,10 @@ "@value" : "Certification" } ], "http://www.w3.org/2004/02/skos/core#topConceptOf" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ] }, { - "@id" : "dfc-f:Claim", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Claim", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://purl.org/dc/terms/description" : [ { "@language" : "en", @@ -538,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" : "dfc-f:NutritionalClaim" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NutritionalClaim" }, { - "@id" : "dfc-f:HealthClaim" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#HealthClaim" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -550,10 +553,10 @@ "@value" : "Allégations nutritionnelles et de santé" } ], "http://www.w3.org/2004/02/skos/core#topConceptOf" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ] }, { - "@id" : "dfc-f:ContainsNutrientOrSubstance", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#ContainsNutrientOrSubstance", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://purl.org/dc/terms/description" : [ { "@language" : "en", @@ -563,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" : "dfc-f:NutritionalClaim" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NutritionalClaim" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -576,16 +579,16 @@ "@value" : "Contient nutriment ou autre substance" } ] }, { - "@id" : "dfc-f:Corsica", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "dfc-f:France" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#France" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -595,18 +598,18 @@ "@value" : "Corse" } ] }, { - "@id" : "dfc-f:Cow", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Cow", "@type" : [ "skos:Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "dfc-f:AnimalPartOrigin" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#AnimalPartOrigin" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "dfc-f:CowBody" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#CowBody" }, { - "@id" : "dfc-f:CowMilk" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#CowMilk" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -616,13 +619,13 @@ "@value" : "Vache" } ] }, { - "@id" : "dfc-f:CowBody", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#CowBody", "@type" : [ "skos:Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "dfc-f:Cow" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Cow" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -632,13 +635,13 @@ "@value" : "Partie de vache" } ] }, { - "@id" : "dfc-f:CowMilk", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#CowMilk", "@type" : [ "skos:Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "dfc-f:Cow" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Cow" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -648,18 +651,18 @@ "@value" : "Lait de vache" } ] }, { - "@id" : "dfc-f:DFC_ProductGlossary_Facet", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "dfc-f:Certification" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Certification" }, { - "@id" : "dfc-f:Claim" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Claim" }, { - "@id" : "dfc-f:TerritorialOrigin" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#TerritorialOrigin" }, { - "@id" : "dfc-f:NatureOrigin" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NatureOrigin" }, { - "@id" : "dfc-f:PartOrigin" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#PartOrigin" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -669,16 +672,16 @@ "@value" : "Product glossary facets" } ] }, { - "@id" : "dfc-f:Demeter", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "dfc-f:BiodynamicLabel" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#BiodynamicLabel" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -688,7 +691,7 @@ "@value" : "Demeter" } ] }, { - "@id" : "dfc-f:EnergyFree", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#EnergyFree", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://purl.org/dc/terms/description" : [ { "@language" : "en", @@ -698,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" : "dfc-f:NutritionalClaim" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NutritionalClaim" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -711,7 +714,7 @@ "@value" : "Sans apport énergétique" } ] }, { - "@id" : "dfc-f:EnergyReduced", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#EnergyReduced", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://purl.org/dc/terms/description" : [ { "@language" : "en", @@ -721,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" : "dfc-f:NutritionalClaim" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NutritionalClaim" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -734,16 +737,16 @@ "@value" : "Valeur énergétique réduite" } ] }, { - "@id" : "dfc-f:England", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "dfc-f:UnitedKingdom" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#UnitedKingdom" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -753,30 +756,30 @@ "@value" : "Angleterre" } ] }, { - "@id" : "dfc-f:EthicalLabel", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#EthicalLabel", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "dfc-f:Certification" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Certification" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "dfc-f:Milk-fed" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Milk-fed" }, { - "@id" : "dfc-f:RedLabel_FR" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#RedLabel_FR" }, { - "@id" : "dfc-f:FSC" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#FSC" }, { - "@id" : "dfc-f:MSC" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#MSC" }, { - "@id" : "dfc-f:HEV" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#HEV" }, { - "@id" : "dfc-f:BleuBlancCoeur_FR" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#BleuBlancCoeur_FR" }, { - "@id" : "dfc-f:FairTradeMaxHaavelar" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#FairTradeMaxHaavelar" }, { - "@id" : "dfc-f:RainforestAlliance" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#RainforestAlliance" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -786,37 +789,37 @@ "@value" : "Label éthique" } ] }, { - "@id" : "dfc-f:Europe", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "dfc-f:TerritorialOrigin" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#TerritorialOrigin" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "dfc-f:France" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#France" }, { - "@id" : "dfc-f:UnitedKingdom" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#UnitedKingdom" }, { - "@id" : "dfc-f:Ireland" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Ireland" }, { - "@id" : "dfc-f:Belgium" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Belgium" }, { - "@id" : "dfc-f:Germany" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Germany" }, { - "@id" : "dfc-f:Spain" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Spain" }, { - "@id" : "dfc-f:Portugal" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Portugal" }, { - "@id" : "dfc-f:Italy" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Italy" }, { - "@id" : "dfc-f:Switzerland" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Switzerland" }, { - "@id" : "dfc-f:Netherlands" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Netherlands" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -826,18 +829,18 @@ "@value" : "Europe" } ] }, { - "@id" : "dfc-f:Ewe", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Ewe", "@type" : [ "skos:Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "dfc-f:AnimalPartOrigin" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#AnimalPartOrigin" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "dfc-f:EweBody" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#EweBody" }, { - "@id" : "dfc-f:EweMilk" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#EweMilk" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -847,13 +850,13 @@ "@value" : "Ewe" } ] }, { - "@id" : "dfc-f:EweBody", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#EweBody", "@type" : [ "skos:Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "dfc-f:Ewe" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Ewe" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -863,13 +866,13 @@ "@value" : "Partie de brebis" } ] }, { - "@id" : "dfc-f:EweMilk", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#EweMilk", "@type" : [ "skos:Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "dfc-f:Ewe" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Ewe" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -879,7 +882,7 @@ "@value" : "Sheep milk" } ] }, { - "@id" : "dfc-f:FSC", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" @@ -892,10 +895,10 @@ "@value" : "FSC" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "dfc-f:EthicalLabel" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#EthicalLabel" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -905,7 +908,7 @@ "@value" : "Forêt durable FSC" } ] }, { - "@id" : "dfc-f:FairTradeMaxHaavelar", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" @@ -918,10 +921,10 @@ "@value" : "Max Haavelar" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "dfc-f:EthicalLabel" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#EthicalLabel" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -931,7 +934,7 @@ "@value" : "Fairtrade Max Haavelar" } ] }, { - "@id" : "dfc-f:FatFree", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#FatFree", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://purl.org/dc/terms/description" : [ { "@language" : "en", @@ -941,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" : "dfc-f:NutritionalClaim" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NutritionalClaim" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -954,13 +957,13 @@ "@value" : "Sans matières grasses" } ] }, { - "@id" : "dfc-f:Flower", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Flower", "@type" : [ "skos:Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "dfc-f:PlantPartOrigin" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#PlantPartOrigin" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -970,7 +973,7 @@ "@value" : "Flower" } ] }, { - "@id" : "dfc-f:France", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#France", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#altLabel" : [ { "@language" : "en", @@ -980,40 +983,40 @@ "@value" : "FR" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "dfc-f:Europe" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Europe" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "dfc-f:AuvergneRhoneAlpes" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#AuvergneRhoneAlpes" }, { - "@id" : "dfc-f:BourgogneFrancheComte" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#BourgogneFrancheComte" }, { - "@id" : "dfc-f:Brittany" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Brittany" }, { - "@id" : "dfc-f:CentreValLoire" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#CentreValLoire" }, { - "@id" : "dfc-f:Corsica" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Corsica" }, { - "@id" : "dfc-f:GrandEst" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#GrandEst" }, { - "@id" : "dfc-f:HautsDeFrance" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#HautsDeFrance" }, { - "@id" : "dfc-f:IleDeFrance" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#IleDeFrance" }, { - "@id" : "dfc-f:Normandy" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Normandy" }, { - "@id" : "dfc-f:NouvelleAquitaine" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NouvelleAquitaine" }, { - "@id" : "dfc-f:Occitania" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Occitania" }, { - "@id" : "dfc-f:PaysDeLoire" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#PaysDeLoire" }, { - "@id" : "dfc-f:ProvenceAlpesCotesAzur" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#ProvenceAlpesCotesAzur" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1023,13 +1026,13 @@ "@value" : "France" } ] }, { - "@id" : "dfc-f:Fruit", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Fruit", "@type" : [ "skos:Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "dfc-f:PlantPartOrigin" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#PlantPartOrigin" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1039,13 +1042,13 @@ "@value" : "Fruit" } ] }, { - "@id" : "dfc-f:Funghi", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Funghi", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "dfc-f:NatureOrigin" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NatureOrigin" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1055,16 +1058,16 @@ "@value" : "Champignon" } ] }, { - "@id" : "dfc-f:Germany", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "dfc-f:Europe" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Europe" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1074,13 +1077,13 @@ "@value" : "Allemagne" } ] }, { - "@id" : "dfc-f:GlutenFree", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#GlutenFree", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "dfc-f:OtherClaim" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#OtherClaim" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1090,18 +1093,18 @@ "@value" : "Sans gluten" } ] }, { - "@id" : "dfc-f:Goat", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Goat", "@type" : [ "skos:Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "dfc-f:AnimalPartOrigin" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#AnimalPartOrigin" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "dfc-f:GoatBody" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#GoatBody" }, { - "@id" : "dfc-f:GoatMilk" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#GoatMilk" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -1111,13 +1114,13 @@ "@value" : "Goat" } ] }, { - "@id" : "dfc-f:GoatBody", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#GoatBody", "@type" : [ "skos:Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "dfc-f:Goat" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Goat" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1127,13 +1130,13 @@ "@value" : "Partie de chèvre" } ] }, { - "@id" : "dfc-f:GoatMilk", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#GoatMilk", "@type" : [ "skos:Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "dfc-f:Goat" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Goat" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -1143,16 +1146,16 @@ "@value" : "Goat milk" } ] }, { - "@id" : "dfc-f:GrandEst", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "dfc-f:France" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#France" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1162,7 +1165,7 @@ "@value" : "Grand Est" } ] }, { - "@id" : "dfc-f:HEV", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" @@ -1175,10 +1178,10 @@ "@value" : "HVE" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "dfc-f:EthicalLabel" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#EthicalLabel" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1188,16 +1191,16 @@ "@value" : "Haute Valeur Environnementale" } ] }, { - "@id" : "dfc-f:HautsDeFrance", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "dfc-f:France" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#France" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1207,17 +1210,17 @@ "@value" : "Hauts-de-France" } ] }, { - "@id" : "dfc-f:HealthClaim", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "dfc-f:Claim" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Claim" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1227,18 +1230,18 @@ "@value" : "Allégation santé" } ] }, { - "@id" : "dfc-f:Hen", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Hen", "@type" : [ "skos:Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "dfc-f:AnimalPartOrigin" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#AnimalPartOrigin" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "dfc-f:HenBody" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#HenBody" }, { - "@id" : "dfc-f:HenEgg" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#HenEgg" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1248,13 +1251,13 @@ "@value" : "Poule" } ] }, { - "@id" : "dfc-f:HenBody", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#HenBody", "@type" : [ "skos:Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "dfc-f:Hen" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Hen" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1264,13 +1267,13 @@ "@value" : "Partie de poule" } ] }, { - "@id" : "dfc-f:HenEgg", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#HenEgg", "@type" : [ "skos:Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "dfc-f:Hen" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Hen" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1280,7 +1283,7 @@ "@value" : "Œuf de poule" } ] }, { - "@id" : "dfc-f:HighFibre", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#HighFibre", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://purl.org/dc/terms/description" : [ { "@language" : "en", @@ -1290,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" : "dfc-f:NutritionalClaim" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NutritionalClaim" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1303,7 +1306,7 @@ "@value" : "Riche en fibres" } ] }, { - "@id" : "dfc-f:HighMonounsaturatedFat", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#HighMonounsaturatedFat", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://purl.org/dc/terms/description" : [ { "@language" : "en", @@ -1313,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" : "dfc-f:NutritionalClaim" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NutritionalClaim" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1326,7 +1329,7 @@ "@value" : "Riche en graisses monoinsaturées" } ] }, { - "@id" : "dfc-f:HighOmega3FattyAcids", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#HighOmega3FattyAcids", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://purl.org/dc/terms/description" : [ { "@language" : "en", @@ -1336,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" : "dfc-f:NutritionalClaim" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NutritionalClaim" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1349,7 +1352,7 @@ "@value" : "Riche en acide gras Oméga-3" } ] }, { - "@id" : "dfc-f:HighPolyunsaturatedFat", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#HighPolyunsaturatedFat", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://purl.org/dc/terms/description" : [ { "@language" : "en", @@ -1359,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" : "dfc-f:NutritionalClaim" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NutritionalClaim" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1372,7 +1375,7 @@ "@value" : "Riche en graisses polyinsaturées" } ] }, { - "@id" : "dfc-f:HighProtein", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#HighProtein", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://purl.org/dc/terms/description" : [ { "@language" : "en", @@ -1382,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" : "dfc-f:NutritionalClaim" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NutritionalClaim" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1395,7 +1398,7 @@ "@value" : "Riche en protéines" } ] }, { - "@id" : "dfc-f:HighUnsaturatedFat", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#HighUnsaturatedFat", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://purl.org/dc/terms/description" : [ { "@language" : "en", @@ -1405,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" : "dfc-f:NutritionalClaim" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NutritionalClaim" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1418,7 +1421,7 @@ "@value" : "Riche en graisses insaturées" } ] }, { - "@id" : "dfc-f:HighVitaminsMinerals", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#HighVitaminsMinerals", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://purl.org/dc/terms/description" : [ { "@language" : "en", @@ -1428,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" : "dfc-f:NutritionalClaim" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NutritionalClaim" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1441,7 +1444,7 @@ "@value" : "Riche en vitamines et/ou de minéraux" } ] }, { - "@id" : "dfc-f:IGP_EU", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" @@ -1454,10 +1457,10 @@ "@value" : "IGP" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "dfc-f:LocalLabel" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#LocalLabel" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1467,7 +1470,7 @@ "@value" : "Indication géographique de provenance" } ] }, { - "@id" : "dfc-f:IleDeFrance", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" @@ -1480,10 +1483,10 @@ "@value" : "IDF" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "dfc-f:France" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#France" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1493,7 +1496,7 @@ "@value" : "Île-de-France" } ] }, { - "@id" : "dfc-f:IncreasedNutrient", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#IncreasedNutrient", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://purl.org/dc/terms/description" : [ { "@language" : "en", @@ -1503,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" : "dfc-f:NutritionalClaim" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NutritionalClaim" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1516,7 +1519,7 @@ "@value" : "Enrichi en nutriment" } ] }, { - "@id" : "dfc-f:Ireland", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" @@ -1529,10 +1532,10 @@ "@value" : "Irlande" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "dfc-f:Europe" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Europe" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1542,16 +1545,16 @@ "@value" : "République d'Irlande" } ] }, { - "@id" : "dfc-f:Italy", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "dfc-f:Europe" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Europe" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1561,13 +1564,13 @@ "@value" : "Italie" } ] }, { - "@id" : "dfc-f:Leaf", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Leaf", "@type" : [ "skos:Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "dfc-f:PlantPartOrigin" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#PlantPartOrigin" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -1577,7 +1580,7 @@ "@value" : "Leaf" } ] }, { - "@id" : "dfc-f:Light", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Light", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://purl.org/dc/terms/description" : [ { "@language" : "en", @@ -1587,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" : "dfc-f:NutritionalClaim" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NutritionalClaim" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -1600,7 +1603,7 @@ "@value" : "Light/Lite" } ] }, { - "@id" : "dfc-f:LightLite", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#LightLite", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://purl.org/dc/terms/description" : [ { "@language" : "en", @@ -1610,37 +1613,37 @@ "@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" : "dfc-f:NutritionalClaim" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NutritionalClaim" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { - "@language" : "en", - "@value" : "Low/Light" - }, { "@language" : "fr", "@value" : "Allégé/Light" + }, { + "@language" : "en", + "@value" : "Low/Light" } ] }, { - "@id" : "dfc-f:LocalLabel", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#LocalLabel", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "dfc-f:Certification" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Certification" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "dfc-f:PaysansDeNature_FR" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#PaysansDeNature_FR" }, { - "@id" : "dfc-f:AOC_FR" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#AOC_FR" }, { - "@id" : "dfc-f:PGS" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#PGS" }, { - "@id" : "dfc-f:AOP_EU" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#AOP_EU" }, { - "@id" : "dfc-f:IGP_EU" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#IGP_EU" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1650,7 +1653,7 @@ "@value" : "Label local" } ] }, { - "@id" : "dfc-f:LowEnergy", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#LowEnergy", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://purl.org/dc/terms/description" : [ { "@language" : "en", @@ -1660,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" : "dfc-f:NutritionalClaim" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NutritionalClaim" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1673,7 +1676,7 @@ "@value" : "Faible valeur énergétique" } ] }, { - "@id" : "dfc-f:LowFat", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#LowFat", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://purl.org/dc/terms/description" : [ { "@language" : "en", @@ -1683,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" : "dfc-f:NutritionalClaim" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NutritionalClaim" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1696,7 +1699,7 @@ "@value" : "Faible teneur en matière grasse" } ] }, { - "@id" : "dfc-f:LowSaturatedFat", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#LowSaturatedFat", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://purl.org/dc/terms/description" : [ { "@language" : "en", @@ -1706,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" : "dfc-f:NutritionalClaim" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NutritionalClaim" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1719,7 +1722,7 @@ "@value" : "Faible teneur en graisses saturées" } ] }, { - "@id" : "dfc-f:LowSodiumSalt", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#LowSodiumSalt", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://purl.org/dc/terms/description" : [ { "@language" : "en", @@ -1729,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" : "dfc-f:NutritionalClaim" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NutritionalClaim" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1742,7 +1745,7 @@ "@value" : "Pauvre en sodium/sel" } ] }, { - "@id" : "dfc-f:LowSugars", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#LowSugars", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://purl.org/dc/terms/description" : [ { "@language" : "en", @@ -1752,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" : "dfc-f:NutritionalClaim" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NutritionalClaim" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1765,7 +1768,7 @@ "@value" : "Faible teneur en sucres" } ] }, { - "@id" : "dfc-f:MSC", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" @@ -1778,10 +1781,10 @@ "@value" : "MSC" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "dfc-f:EthicalLabel" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#EthicalLabel" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1791,18 +1794,18 @@ "@value" : "Pêche durable MSC" } ] }, { - "@id" : "dfc-f:MarketingLabel", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#MarketingLabel", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "dfc-f:Certification" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Certification" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "dfc-f:ProductOfTheYear" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#ProductOfTheYear" }, { - "@id" : "dfc-f:TasteOfTheYear" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#TasteOfTheYear" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1812,13 +1815,13 @@ "@value" : "Label marketing" } ] }, { - "@id" : "dfc-f:Milk-fed", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Milk-fed", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "dfc-f:EthicalLabel" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#EthicalLabel" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1828,13 +1831,13 @@ "@value" : "Nourri au lait" } ] }, { - "@id" : "dfc-f:Mineral", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Mineral", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "dfc-f:NatureOrigin" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NatureOrigin" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1844,13 +1847,13 @@ "@value" : "Minéral" } ] }, { - "@id" : "dfc-f:MultiGeoOrigin", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#MultiGeoOrigin", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "dfc-f:TerritorialOrigin" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#TerritorialOrigin" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1860,13 +1863,13 @@ "@value" : "Origine territorial multiple" } ] }, { - "@id" : "dfc-f:MultiNatureOrigin", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#MultiNatureOrigin", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "dfc-f:NatureOrigin" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NatureOrigin" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1876,13 +1879,13 @@ "@value" : "Origine multiple" } ] }, { - "@id" : "dfc-f:MultiOrigin", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#MultiOrigin", "@type" : [ "skos:Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "dfc-f:PartOrigin" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#PartOrigin" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1892,7 +1895,7 @@ "@value" : "Origine multiple" } ] }, { - "@id" : "dfc-f:Natural", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Natural", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://purl.org/dc/terms/description" : [ { "@language" : "en", @@ -1902,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" : "dfc-f:NutritionalClaim" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NutritionalClaim" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -1915,7 +1918,7 @@ "@value" : "Naturally/Natural" } ] }, { - "@id" : "dfc-f:NatureEtProgres", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" @@ -1925,10 +1928,10 @@ "@value" : "Nature and Progress" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "dfc-f:OrganicLabel" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#OrganicLabel" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1938,7 +1941,7 @@ "@value" : "Nature et progrès" } ] }, { - "@id" : "dfc-f:NatureOrigin", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NatureOrigin", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://purl.org/dc/terms/description" : [ { "@language" : "en", @@ -1952,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" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "dfc-f:UnknownNatureOrigin" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#UnknownNatureOrigin" }, { - "@id" : "dfc-f:MultiNatureOrigin" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#MultiNatureOrigin" }, { - "@id" : "dfc-f:PlantOrigin" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#PlantOrigin" }, { - "@id" : "dfc-f:AnimalOrigin" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#AnimalOrigin" }, { - "@id" : "dfc-f:Mineral" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Mineral" }, { - "@id" : "dfc-f:Funghi" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Funghi" }, { - "@id" : "dfc-f:Algae" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Algae" }, { - "@id" : "dfc-f:Bacteria" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Bacteria" }, { - "@id" : "dfc-f:Water" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Water" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1981,19 +1984,19 @@ "@value" : "Source naturelle d'origine" } ], "http://www.w3.org/2004/02/skos/core#topConceptOf" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ] }, { - "@id" : "dfc-f:Netherlands", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "dfc-f:Europe" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Europe" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2003,16 +2006,16 @@ "@value" : "Pays bas" } ] }, { - "@id" : "dfc-f:NewZealand", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "dfc-f:Oceania" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Oceania" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2022,7 +2025,7 @@ "@value" : "Nouvelle Zélande" } ] }, { - "@id" : "dfc-f:NoAddedSodiumSalt", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NoAddedSodiumSalt", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://purl.org/dc/terms/description" : [ { "@language" : "en", @@ -2032,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" : "dfc-f:NutritionalClaim" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NutritionalClaim" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2045,7 +2048,7 @@ "@value" : "Sans sodium/sel ajouté" } ] }, { - "@id" : "dfc-f:NoAddedSugars", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NoAddedSugars", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://purl.org/dc/terms/description" : [ { "@language" : "en", @@ -2055,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" : "dfc-f:NutritionalClaim" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NutritionalClaim" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2068,16 +2071,16 @@ "@value" : "Sans sucres ajoutés" } ] }, { - "@id" : "dfc-f:Normandy", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "dfc-f:France" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#France" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2087,16 +2090,16 @@ "@value" : "Normandie" } ] }, { - "@id" : "dfc-f:NorthAmerica", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "dfc-f:TerritorialOrigin" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#TerritorialOrigin" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2106,16 +2109,16 @@ "@value" : "Amérique du Nord" } ] }, { - "@id" : "dfc-f:NorthernIreland", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "dfc-f:UnitedKingdom" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#UnitedKingdom" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2125,7 +2128,7 @@ "@value" : "Irlande du Nord" } ] }, { - "@id" : "dfc-f:NouvelleAquitaine", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" @@ -2135,10 +2138,10 @@ "@value" : "NA" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "dfc-f:France" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#France" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2148,74 +2151,74 @@ "@value" : "Nouvelle-Aquitaine" } ] }, { - "@id" : "dfc-f:NutritionalClaim", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NutritionalClaim", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "dfc-f:Claim" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Claim" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "dfc-f:LowEnergy" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#LowEnergy" }, { - "@id" : "dfc-f:EnergyReduced" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#EnergyReduced" }, { - "@id" : "dfc-f:EnergyFree" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#EnergyFree" }, { - "@id" : "dfc-f:LowFat" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#LowFat" }, { - "@id" : "dfc-f:FatFree" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#FatFree" }, { - "@id" : "dfc-f:LowSaturatedFat" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#LowSaturatedFat" }, { - "@id" : "dfc-f:SaturatedFatFree" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#SaturatedFatFree" }, { - "@id" : "dfc-f:LowSugars" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#LowSugars" }, { - "@id" : "dfc-f:SugarsFree" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#SugarsFree" }, { - "@id" : "dfc-f:NoAddedSugars" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NoAddedSugars" }, { - "@id" : "dfc-f:LowSodiumSalt" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#LowSodiumSalt" }, { - "@id" : "dfc-f:VeryLowSodiumSalt" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#VeryLowSodiumSalt" }, { - "@id" : "dfc-f:SodiumOrSaltFree" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#SodiumOrSaltFree" }, { - "@id" : "dfc-f:NoAddedSodiumSalt" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NoAddedSodiumSalt" }, { - "@id" : "dfc-f:SourceOfFibre" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#SourceOfFibre" }, { - "@id" : "dfc-f:HighFibre" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#HighFibre" }, { - "@id" : "dfc-f:SourceOfProtein" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#SourceOfProtein" }, { - "@id" : "dfc-f:HighProtein" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#HighProtein" }, { - "@id" : "dfc-f:SourceOfVitaminsMinerals" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#SourceOfVitaminsMinerals" }, { - "@id" : "dfc-f:HighVitaminsMinerals" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#HighVitaminsMinerals" }, { - "@id" : "dfc-f:ContainsNutrientOrSubstance" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#ContainsNutrientOrSubstance" }, { - "@id" : "dfc-f:IncreasedNutrient" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#IncreasedNutrient" }, { - "@id" : "dfc-f:ReducedNutrient" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#ReducedNutrient" }, { - "@id" : "dfc-f:Light" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Light" }, { - "@id" : "dfc-f:Natural" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Natural" }, { - "@id" : "dfc-f:SourceOfOmega3FattyAcids" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#SourceOfOmega3FattyAcids" }, { - "@id" : "dfc-f:HighOmega3FattyAcids" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#HighOmega3FattyAcids" }, { - "@id" : "dfc-f:HighMonounsaturatedFat" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#HighMonounsaturatedFat" }, { - "@id" : "dfc-f:HighPolyunsaturatedFat" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#HighPolyunsaturatedFat" }, { - "@id" : "dfc-f:HighUnsaturatedFat" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#HighUnsaturatedFat" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2225,16 +2228,16 @@ "@value" : "Allégation nutritionnelle" } ] }, { - "@id" : "dfc-f:Occitania", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "dfc-f:France" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#France" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2244,21 +2247,21 @@ "@value" : "Occitanie" } ] }, { - "@id" : "dfc-f:Oceania", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "dfc-f:TerritorialOrigin" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#TerritorialOrigin" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "dfc-f:Australia" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Australia" }, { - "@id" : "dfc-f:NewZealand" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NewZealand" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2268,16 +2271,16 @@ "@value" : "Océanie" } ] }, { - "@id" : "dfc-f:Organic-AB", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "dfc-f:OrganicLabel" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#OrganicLabel" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2287,13 +2290,13 @@ "@value" : "Agriculture Biologique" } ] }, { - "@id" : "dfc-f:Organic-BioCoherence", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Organic-BioCoherence", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "dfc-f:OrganicLabel" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#OrganicLabel" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2303,7 +2306,7 @@ "@value" : "Bio Coherence" } ] }, { - "@id" : "dfc-f:Organic-EU", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" @@ -2313,10 +2316,10 @@ "@value" : "Eurofeuille" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "dfc-f:OrganicLabel" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#OrganicLabel" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2326,22 +2329,22 @@ "@value" : "Agriculture Biologique EU" } ] }, { - "@id" : "dfc-f:OrganicLabel", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#OrganicLabel", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "dfc-f:Certification" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Certification" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "dfc-f:Organic-AB" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Organic-AB" }, { - "@id" : "dfc-f:Organic-EU" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Organic-EU" }, { - "@id" : "dfc-f:Organic-BioCoherence" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Organic-BioCoherence" }, { - "@id" : "dfc-f:NatureEtProgres" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NatureEtProgres" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2351,7 +2354,7 @@ "@value" : "Label biologique" } ] }, { - "@id" : "dfc-f:OtherClaim", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#OtherClaim", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://purl.org/dc/terms/description" : [ { "@language" : "en", @@ -2361,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" : "dfc-f:Claim" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Claim" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "dfc-f:Vegan" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Vegan" }, { - "@id" : "dfc-f:Vegetarian" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Vegetarian" }, { - "@id" : "dfc-f:GlutenFree" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#GlutenFree" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2381,7 +2384,7 @@ "@value" : "Autre allégation" } ] }, { - "@id" : "dfc-f:PGS", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" @@ -2394,10 +2397,10 @@ "@value" : "PGS" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "dfc-f:LocalLabel" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#LocalLabel" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2407,7 +2410,7 @@ "@value" : "Statut géographique protégé" } ] }, { - "@id" : "dfc-f:PartOrigin", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#PartOrigin", "@type" : [ "skos:Concept" ], "http://purl.org/dc/elements/1.1/description" : [ { "@language" : "en", @@ -2421,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" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "dfc-f:AnimalPartOrigin" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#AnimalPartOrigin" }, { - "@id" : "dfc-f:MultiOrigin" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#MultiOrigin" }, { - "@id" : "dfc-f:PlantPartOrigin" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#PlantPartOrigin" }, { - "@id" : "dfc-f:UnknownPartOrigin" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#UnknownPartOrigin" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2440,10 +2443,10 @@ "@value" : "Partie d'origine" } ], "http://www.w3.org/2004/02/skos/core#topConceptOf" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ] }, { - "@id" : "dfc-f:PaysDeLoire", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" @@ -2453,10 +2456,10 @@ "@value" : "Loire lands" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "dfc-f:France" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#France" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2466,17 +2469,17 @@ "@value" : "Pays de la Loire" } ] }, { - "@id" : "dfc-f:PaysansDeNature_FR", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "dfc-f:LocalLabel" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#LocalLabel" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2486,16 +2489,16 @@ "@value" : "Paysans de Nature" } ] }, { - "@id" : "dfc-f:Pig", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Pig", "@type" : [ "skos:Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "dfc-f:AnimalPartOrigin" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#AnimalPartOrigin" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "dfc-f:PigBody" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#PigBody" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -2505,13 +2508,13 @@ "@value" : "Pig" } ] }, { - "@id" : "dfc-f:PigBody", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#PigBody", "@type" : [ "skos:Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "dfc-f:Pig" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Pig" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -2521,13 +2524,13 @@ "@value" : "Pig's body" } ] }, { - "@id" : "dfc-f:PlantOrigin", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#PlantOrigin", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "dfc-f:NatureOrigin" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NatureOrigin" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2537,32 +2540,32 @@ "@value" : "Plante" } ] }, { - "@id" : "dfc-f:PlantPartOrigin", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#PlantPartOrigin", "@type" : [ "skos:Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "dfc-f:PartOrigin" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#PartOrigin" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "dfc-f:Bulb" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Bulb" }, { - "@id" : "dfc-f:Flower" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Flower" }, { - "@id" : "dfc-f:Fruit" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Fruit" }, { - "@id" : "dfc-f:Leaf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Leaf" }, { - "@id" : "dfc-f:Root" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Root" }, { - "@id" : "dfc-f:Seed" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Seed" }, { - "@id" : "dfc-f:Stem" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Stem" }, { - "@id" : "dfc-f:Tuber" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Tuber" }, { - "@id" : "dfc-f:WholePlant" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#WholePlant" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2572,16 +2575,16 @@ "@value" : "Partie ou produit d'une plante" } ] }, { - "@id" : "dfc-f:Portugal", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "dfc-f:Europe" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Europe" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2591,16 +2594,16 @@ "@value" : "Portugal" } ] }, { - "@id" : "dfc-f:ProductOfTheYear", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "dfc-f:MarketingLabel" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#MarketingLabel" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2610,7 +2613,7 @@ "@value" : "Elu produit de l'année" } ] }, { - "@id" : "dfc-f:ProvenceAlpesCotesAzur", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" @@ -2623,10 +2626,10 @@ "@value" : "PACA" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "dfc-f:France" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#France" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2636,16 +2639,16 @@ "@value" : "Provence-Alpes-Côte d’Azur" } ] }, { - "@id" : "dfc-f:Quail", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Quail", "@type" : [ "skos:Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "dfc-f:AnimalPartOrigin" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#AnimalPartOrigin" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "dfc-f:QuailEgg" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#QuailEgg" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -2655,13 +2658,13 @@ "@value" : "Quail" } ] }, { - "@id" : "dfc-f:QuailEgg", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#QuailEgg", "@type" : [ "skos:Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "dfc-f:Quail" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Quail" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2671,16 +2674,16 @@ "@value" : "Œuf de caille" } ] }, { - "@id" : "dfc-f:RainforestAlliance", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "dfc-f:EthicalLabel" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#EthicalLabel" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2690,7 +2693,7 @@ "@value" : "Rainforest Alliance" } ] }, { - "@id" : "dfc-f:RedLabel_FR", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" @@ -2700,10 +2703,10 @@ "@value" : "Red Label" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "dfc-f:EthicalLabel" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#EthicalLabel" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2713,7 +2716,7 @@ "@value" : "Label Rouge" } ] }, { - "@id" : "dfc-f:ReducedNutrient", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#ReducedNutrient", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://purl.org/dc/terms/description" : [ { "@language" : "en", @@ -2723,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" : "dfc-f:NutritionalClaim" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NutritionalClaim" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2736,13 +2739,13 @@ "@value" : "Réduit en nutriment" } ] }, { - "@id" : "dfc-f:Root", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Root", "@type" : [ "skos:Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "dfc-f:PlantPartOrigin" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#PlantPartOrigin" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -2752,16 +2755,16 @@ "@value" : "Root" } ] }, { - "@id" : "dfc-f:Roster", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Roster", "@type" : [ "skos:Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "dfc-f:AnimalPartOrigin" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#AnimalPartOrigin" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "dfc-f:RosterBody" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#RosterBody" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -2771,13 +2774,13 @@ "@value" : "Rooster" } ] }, { - "@id" : "dfc-f:RosterBody", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#RosterBody", "@type" : [ "skos:Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "dfc-f:Roster" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Roster" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -2787,7 +2790,7 @@ "@value" : "Rooster's body" } ] }, { - "@id" : "dfc-f:SaturatedFatFree", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#SaturatedFatFree", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://purl.org/dc/terms/description" : [ { "@language" : "en", @@ -2797,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" : "dfc-f:NutritionalClaim" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NutritionalClaim" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2810,16 +2813,16 @@ "@value" : "Sans graisses saturées" } ] }, { - "@id" : "dfc-f:Scotland", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "dfc-f:UnitedKingdom" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#UnitedKingdom" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2829,13 +2832,13 @@ "@value" : "Ecosse" } ] }, { - "@id" : "dfc-f:Seed", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Seed", "@type" : [ "skos:Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "dfc-f:PlantPartOrigin" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#PlantPartOrigin" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -2845,16 +2848,16 @@ "@value" : "Seed" } ] }, { - "@id" : "dfc-f:Sheep", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Sheep", "@type" : [ "skos:Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "dfc-f:AnimalPartOrigin" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#AnimalPartOrigin" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "dfc-f:SheepBody" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#SheepBody" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -2864,13 +2867,13 @@ "@value" : "Sheep" } ] }, { - "@id" : "dfc-f:SheepBody", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#SheepBody", "@type" : [ "skos:Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "dfc-f:Sheep" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Sheep" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -2880,7 +2883,7 @@ "@value" : "Sheep's body" } ] }, { - "@id" : "dfc-f:SodiumOrSaltFree", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#SodiumOrSaltFree", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://purl.org/dc/terms/description" : [ { "@language" : "en", @@ -2890,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" : "dfc-f:NutritionalClaim" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NutritionalClaim" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2903,7 +2906,7 @@ "@value" : "Sans sodium ou sans sel" } ] }, { - "@id" : "dfc-f:SourceOfFibre", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#SourceOfFibre", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://purl.org/dc/terms/description" : [ { "@language" : "en", @@ -2913,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" : "dfc-f:NutritionalClaim" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NutritionalClaim" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2926,7 +2929,7 @@ "@value" : "Source de fibres" } ] }, { - "@id" : "dfc-f:SourceOfOmega3FattyAcids", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#SourceOfOmega3FattyAcids", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://purl.org/dc/terms/description" : [ { "@language" : "en", @@ -2936,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" : "dfc-f:NutritionalClaim" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NutritionalClaim" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2949,7 +2952,7 @@ "@value" : "Source d'acide gras Oméga-3" } ] }, { - "@id" : "dfc-f:SourceOfProtein", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#SourceOfProtein", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://purl.org/dc/terms/description" : [ { "@language" : "en", @@ -2959,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" : "dfc-f:NutritionalClaim" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NutritionalClaim" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2972,7 +2975,7 @@ "@value" : "Source de protéine" } ] }, { - "@id" : "dfc-f:SourceOfVitaminsMinerals", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#SourceOfVitaminsMinerals", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://purl.org/dc/terms/description" : [ { "@language" : "en", @@ -2982,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" : "dfc-f:NutritionalClaim" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NutritionalClaim" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2995,16 +2998,16 @@ "@value" : "Source de vitamines et/ou de minéraux" } ] }, { - "@id" : "dfc-f:SouthAmerica", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "dfc-f:TerritorialOrigin" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#TerritorialOrigin" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -3014,16 +3017,16 @@ "@value" : "Amérique du Sud" } ] }, { - "@id" : "dfc-f:Spain", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "dfc-f:Europe" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Europe" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -3033,13 +3036,13 @@ "@value" : "Espagne" } ] }, { - "@id" : "dfc-f:Stem", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Stem", "@type" : [ "skos:Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "dfc-f:PlantPartOrigin" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#PlantPartOrigin" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -3049,7 +3052,7 @@ "@value" : "Tige" } ] }, { - "@id" : "dfc-f:SugarsFree", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#SugarsFree", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://purl.org/dc/terms/description" : [ { "@language" : "en", @@ -3059,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" : "dfc-f:NutritionalClaim" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NutritionalClaim" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -3072,16 +3075,16 @@ "@value" : "Sugars-free" } ] }, { - "@id" : "dfc-f:Switzerland", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "dfc-f:Europe" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Europe" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -3091,13 +3094,13 @@ "@value" : "Suisse" } ] }, { - "@id" : "dfc-f:TasteOfTheYear", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#TasteOfTheYear", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "dfc-f:MarketingLabel" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#MarketingLabel" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -3107,7 +3110,7 @@ "@value" : "Reconnu Saveur de l’année" } ] }, { - "@id" : "dfc-f:TerritorialOrigin", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#TerritorialOrigin", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://purl.org/dc/terms/description" : [ { "@language" : "en", @@ -3117,24 +3120,24 @@ "@value" : "Origine géographique du produit concerné" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "dfc-f:UnknownGeoOrigin" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#UnknownGeoOrigin" }, { - "@id" : "dfc-f:MultiGeoOrigin" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#MultiGeoOrigin" }, { - "@id" : "dfc-f:Europe" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Europe" }, { - "@id" : "dfc-f:Africa" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Africa" }, { - "@id" : "dfc-f:Asia" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Asia" }, { - "@id" : "dfc-f:Oceania" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Oceania" }, { - "@id" : "dfc-f:NorthAmerica" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NorthAmerica" }, { - "@id" : "dfc-f:SouthAmerica" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#SouthAmerica" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -3144,16 +3147,16 @@ "@value" : "Origine géographique" } ], "http://www.w3.org/2004/02/skos/core#topConceptOf" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ] }, { - "@id" : "dfc-f:Tuber", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Tuber", "@type" : [ "skos:Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "dfc-f:PlantPartOrigin" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#PlantPartOrigin" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -3163,7 +3166,7 @@ "@value" : "Tubercule" } ] }, { - "@id" : "dfc-f:UnitedKingdom", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" @@ -3176,19 +3179,19 @@ "@value" : "UK" } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "dfc-f:Europe" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Europe" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "dfc-f:England" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#England" }, { - "@id" : "dfc-f:Wales" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Wales" }, { - "@id" : "dfc-f:Scotland" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Scotland" }, { - "@id" : "dfc-f:NorthernIreland" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NorthernIreland" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -3198,13 +3201,13 @@ "@value" : "Royaume Uni" } ] }, { - "@id" : "dfc-f:UnknownGeoOrigin", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#UnknownGeoOrigin", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "dfc-f:TerritorialOrigin" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#TerritorialOrigin" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -3214,13 +3217,13 @@ "@value" : "Origine territoriale inconnue" } ] }, { - "@id" : "dfc-f:UnknownLabel", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#UnknownLabel", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "dfc-f:Certification" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Certification" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -3230,13 +3233,13 @@ "@value" : "Label inconnu" } ] }, { - "@id" : "dfc-f:UnknownNatureOrigin", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#UnknownNatureOrigin", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "dfc-f:NatureOrigin" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NatureOrigin" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -3246,13 +3249,13 @@ "@value" : "Source d'origine inconnue" } ] }, { - "@id" : "dfc-f:UnknownPartOrigin", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#UnknownPartOrigin", "@type" : [ "skos:Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "dfc-f:PartOrigin" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#PartOrigin" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -3262,13 +3265,13 @@ "@value" : "Unknown part origin" } ] }, { - "@id" : "dfc-f:Vegan", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Vegan", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "dfc-f:OtherClaim" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#OtherClaim" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -3278,13 +3281,13 @@ "@value" : "Vegan" } ] }, { - "@id" : "dfc-f:Vegetarian", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Vegetarian", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "dfc-f:OtherClaim" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#OtherClaim" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -3294,7 +3297,7 @@ "@value" : "Végétarien" } ] }, { - "@id" : "dfc-f:VeryLowSodiumSalt", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#VeryLowSodiumSalt", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://purl.org/dc/terms/description" : [ { "@language" : "en", @@ -3304,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" : "dfc-f:NutritionalClaim" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NutritionalClaim" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -3317,16 +3320,16 @@ "@value" : "Très pauvre en sodium/sel" } ] }, { - "@id" : "dfc-f:Wales", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "dfc-f:UnitedKingdom" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#UnitedKingdom" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -3336,13 +3339,13 @@ "@value" : "Pays de Galles" } ] }, { - "@id" : "dfc-f:Water", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#Water", "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "dfc-f:NatureOrigin" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#NatureOrigin" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -3352,13 +3355,13 @@ "@value" : "Eau" } ] }, { - "@id" : "dfc-f:WholePlant", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#WholePlant", "@type" : [ "skos:Concept" ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "dfc-f:PlantPartOrigin" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#PlantPartOrigin" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-f:DFC_ProductGlossary_Facet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf#DFC_ProductGlossary_Facet" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -3367,9 +3370,6 @@ "@language" : "en", "@value" : "Whole plant" } ] - }, { - "@id" : "http://static.datafoodconsortium.org/data/productGlossary_Facet.rdf", - "@type" : [ "http://www.w3.org/2002/07/owl#Ontology" ] } ], - "@id" : "http://static.datafoodconsortium.org/data/productGlossary_Facet.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/facets.rdf" } ] \ No newline at end of file diff --git a/engines/dfc_provider/vendor/measures.json b/engines/dfc_provider/vendor/measures.json index 27850b98ee..6a3ef774e0 100644 --- a/engines/dfc_provider/vendor/measures.json +++ b/engines/dfc_provider/vendor/measures.json @@ -1,11 +1,18 @@ -[ { +{ + "@context": { + "dfc-m": "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/measures.rdf#", + "skos": "http://www.w3.org/2004/02/skos/core#", + "rdf": "http://www.w3.org/2000/01/rdf-schema#" + }, + "@id" : "dfc-m:Measures", + "@type" : [ "http://www.w3.org/2002/07/owl#Ontology" ], "@graph" : [ { "@id" : "dfc-m:AllergenDimension", - "@type" : [ "http://www.w3.org/2004/02/skos/core#Collection" ], - "http://www.w3.org/2004/02/skos/core#broader" : [ { + "@type" : [ "skos:Concept" ], + "skos:broader" : [ { "@id" : "dfc-m:Dimension" } ], - "http://www.w3.org/2004/02/skos/core#narrower" : [ { + "skos:narrower" : [ { "@id" : "dfc-m:CerealsWithGluten" }, { "@id" : "dfc-m:Crustaceans" @@ -34,7 +41,7 @@ }, { "@id" : "dfc-m:Molluscs" } ], - "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { + "skos:prefLabel" : [ { "@language" : "en", "@value" : "Allergen dimension" }, { @@ -43,20 +50,20 @@ } ] }, { "@id" : "dfc-m:AustralianDollar", - "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], - "http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ { - "@id" : "unit:AUD" + "@type" : [ "skos:Concept" ], + "rdf:isDefinedBy" : [ { + "@id" : "dfc-m:AUD" } ], - "http://www.w3.org/2004/02/skos/core#broader" : [ { + "skos:broader" : [ { "@id" : "dfc-m:CurrencyUnit" } ], - "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-m:DFC_ProductGlossary_Measure" + "skos:inScheme" : [ { + "@id" : "dfc-m:Measures" } ], - "http://www.w3.org/2004/02/skos/core#notation" : [ { + "skos:notation" : [ { "@value" : "$AU" } ], - "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { + "skos:prefLabel" : [ { "@language" : "en", "@value" : "australian dollar" }, { @@ -65,14 +72,14 @@ } ] }, { "@id" : "dfc-m:Calcium", - "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], - "http://www.w3.org/2004/02/skos/core#broader" : [ { + "@type" : [ "skos:Concept" ], + "skos:broader" : [ { "@id" : "dfc-m:NutrientDimension" } ], - "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-m:DFC_ProductGlossary_Measure" + "skos:inScheme" : [ { + "@id" : "dfc-m:Measures" } ], - "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { + "skos:prefLabel" : [ { "@language" : "en", "@value" : "Calcium" }, { @@ -81,20 +88,20 @@ } ] }, { "@id" : "dfc-m:CanadianDollar", - "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], - "http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ { - "@id" : "unit:CAD" + "@type" : [ "skos:Concept" ], + "rdf:isDefinedBy" : [ { + "@id" : "dfc-m:CAD" } ], - "http://www.w3.org/2004/02/skos/core#broader" : [ { + "skos:broader" : [ { "@id" : "dfc-m:CurrencyUnit" } ], - "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-m:DFC_ProductGlossary_Measure" + "skos:inScheme" : [ { + "@id" : "dfc-m:Measures" } ], - "http://www.w3.org/2004/02/skos/core#notation" : [ { + "skos:notation" : [ { "@value" : "$CA" } ], - "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { + "skos:prefLabel" : [ { "@language" : "en", "@value" : "canadian dollar" }, { @@ -103,14 +110,14 @@ } ] }, { "@id" : "dfc-m:Carbohydrates", - "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], - "http://www.w3.org/2004/02/skos/core#broader" : [ { + "@type" : [ "skos:Concept" ], + "skos:broader" : [ { "@id" : "dfc-m:NutrientDimension" } ], - "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-m:DFC_ProductGlossary_Measure" + "skos:inScheme" : [ { + "@id" : "dfc-m:Measures" } ], - "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { + "skos:prefLabel" : [ { "@language" : "en", "@value" : "Carbohydrates" }, { @@ -119,14 +126,14 @@ } ] }, { "@id" : "dfc-m:Celeriac", - "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], - "http://www.w3.org/2004/02/skos/core#broader" : [ { + "@type" : [ "skos:Concept" ], + "skos:broader" : [ { "@id" : "dfc-m:AllergenDimension" } ], - "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-m:DFC_ProductGlossary_Measure" + "skos:inScheme" : [ { + "@id" : "dfc-m:Measures" } ], - "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { + "skos:prefLabel" : [ { "@language" : "en", "@value" : "Celeriac" }, { @@ -135,20 +142,20 @@ } ] }, { "@id" : "dfc-m:Centilitre", - "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], - "http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ { - "@id" : "unit:CentiL" + "@type" : [ "skos:Concept" ], + "rdf:isDefinedBy" : [ { + "@id" : "dfc-m:CentiL" } ], - "http://www.w3.org/2004/02/skos/core#broader" : [ { + "skos:broader" : [ { "@id" : "dfc-m:QuantityUnit" } ], - "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-m:DFC_ProductGlossary_Measure" + "skos:inScheme" : [ { + "@id" : "dfc-m:Measures" } ], - "http://www.w3.org/2004/02/skos/core#notation" : [ { + "skos:notation" : [ { "@value" : "cl" } ], - "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { + "skos:prefLabel" : [ { "@language" : "en", "@value" : "centilitre" }, { @@ -157,20 +164,20 @@ } ] }, { "@id" : "dfc-m:Centimetre", - "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], - "http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ { - "@id" : "unit:CentiM" + "@type" : [ "skos:Concept" ], + "rdf:isDefinedBy" : [ { + "@id" : "dfc-m:CentiM" } ], - "http://www.w3.org/2004/02/skos/core#broader" : [ { + "skos:broader" : [ { "@id" : "dfc-m:QuantityUnit" } ], - "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-m:DFC_ProductGlossary_Measure" + "skos:inScheme" : [ { + "@id" : "dfc-m:Measures" } ], - "http://www.w3.org/2004/02/skos/core#notation" : [ { + "skos:notation" : [ { "@value" : "cm" } ], - "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { + "skos:prefLabel" : [ { "@language" : "en", "@value" : "centimetre" }, { @@ -179,14 +186,14 @@ } ] }, { "@id" : "dfc-m:CerealsWithGluten", - "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], - "http://www.w3.org/2004/02/skos/core#broader" : [ { + "@type" : [ "skos:Concept" ], + "skos:broader" : [ { "@id" : "dfc-m:AllergenDimension" } ], - "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-m:DFC_ProductGlossary_Measure" + "skos:inScheme" : [ { + "@id" : "dfc-m:Measures" } ], - "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { + "skos:prefLabel" : [ { "@language" : "en", "@value" : "Cereals containing gluten" }, { @@ -195,14 +202,14 @@ } ] }, { "@id" : "dfc-m:Chloride", - "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], - "http://www.w3.org/2004/02/skos/core#broader" : [ { + "@type" : [ "skos:Concept" ], + "skos:broader" : [ { "@id" : "dfc-m:NutrientDimension" } ], - "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-m:DFC_ProductGlossary_Measure" + "skos:inScheme" : [ { + "@id" : "dfc-m:Measures" } ], - "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { + "skos:prefLabel" : [ { "@language" : "en", "@value" : "Chloride" }, { @@ -211,14 +218,14 @@ } ] }, { "@id" : "dfc-m:Cholesterol", - "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], - "http://www.w3.org/2004/02/skos/core#broader" : [ { + "@type" : [ "skos:Concept" ], + "skos:broader" : [ { "@id" : "dfc-m:NutrientDimension" } ], - "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-m:DFC_ProductGlossary_Measure" + "skos:inScheme" : [ { + "@id" : "dfc-m:Measures" } ], - "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { + "skos:prefLabel" : [ { "@language" : "en", "@value" : "Cholesterol" }, { @@ -227,14 +234,14 @@ } ] }, { "@id" : "dfc-m:Chromium", - "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], - "http://www.w3.org/2004/02/skos/core#broader" : [ { + "@type" : [ "skos:Concept" ], + "skos:broader" : [ { "@id" : "dfc-m:NutrientDimension" } ], - "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-m:DFC_ProductGlossary_Measure" + "skos:inScheme" : [ { + "@id" : "dfc-m:Measures" } ], - "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { + "skos:prefLabel" : [ { "@language" : "fr", "@value" : "Chrome" }, { @@ -243,14 +250,14 @@ } ] }, { "@id" : "dfc-m:Copper", - "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], - "http://www.w3.org/2004/02/skos/core#broader" : [ { + "@type" : [ "skos:Concept" ], + "skos:broader" : [ { "@id" : "dfc-m:NutrientDimension" } ], - "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-m:DFC_ProductGlossary_Measure" + "skos:inScheme" : [ { + "@id" : "dfc-m:Measures" } ], - "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { + "skos:prefLabel" : [ { "@language" : "en", "@value" : "Copper" }, { @@ -259,21 +266,21 @@ } ] }, { "@id" : "dfc-m:Crate", - "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], - "http://www.w3.org/2004/02/skos/core#altLabel" : [ { + "@type" : [ "skos:Concept" ], + "skos:altLabel" : [ { "@language" : "fr", "@value" : "caisse" } ], - "http://www.w3.org/2004/02/skos/core#broader" : [ { + "skos:broader" : [ { "@id" : "dfc-m:QuantityUnit" } ], - "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-m:DFC_ProductGlossary_Measure" + "skos:inScheme" : [ { + "@id" : "dfc-m:Measures" } ], - "http://www.w3.org/2004/02/skos/core#notation" : [ { + "skos:notation" : [ { "@value" : "cr" } ], - "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { + "skos:prefLabel" : [ { "@language" : "fr", "@value" : "cagette" }, { @@ -282,14 +289,14 @@ } ] }, { "@id" : "dfc-m:Crustaceans", - "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], - "http://www.w3.org/2004/02/skos/core#broader" : [ { + "@type" : [ "skos:Concept" ], + "skos:broader" : [ { "@id" : "dfc-m:AllergenDimension" } ], - "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-m:DFC_ProductGlossary_Measure" + "skos:inScheme" : [ { + "@id" : "dfc-m:Measures" } ], - "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { + "skos:prefLabel" : [ { "@language" : "en", "@value" : "Crustaceans" }, { @@ -298,14 +305,14 @@ } ] }, { "@id" : "dfc-m:CurrencyUnit", - "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], - "http://www.w3.org/2004/02/skos/core#broader" : [ { + "@type" : [ "skos:Concept" ], + "skos:broader" : [ { "@id" : "dfc-m:Unit" } ], - "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-m:DFC_ProductGlossary_Measure" + "skos:inScheme" : [ { + "@id" : "dfc-m:Measures" } ], - "http://www.w3.org/2004/02/skos/core#narrower" : [ { + "skos:narrower" : [ { "@id" : "dfc-m:AustralianDollar" }, { "@id" : "dfc-m:CanadianDollar" @@ -316,7 +323,7 @@ }, { "@id" : "dfc-m:USDollar" } ], - "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { + "skos:prefLabel" : [ { "@language" : "en", "@value" : "Currency unit" }, { @@ -324,8 +331,8 @@ "@value" : "Unité de devise monétaire" } ] }, { - "@id" : "dfc-m:DFC_ProductGlossary_Measure", - "@type" : [ "http://www.w3.org/2004/02/skos/core#ConceptScheme" ], + "@id" : "dfc-m:Measures", + "@type" : [ "skos:ConceptScheme" ], "http://purl.org/dc/elements/1.1/description" : [ { "@language" : "en", "@value" : "glossary measuring dimensions and units for measuring product" @@ -333,12 +340,12 @@ "@language" : "fr", "@value" : "Glossaire des dimensions et unités de mesures de produit" } ], - "http://www.w3.org/2004/02/skos/core#hasTopConcept" : [ { + "skos:hasTopConcept" : [ { "@id" : "dfc-m:Dimension" }, { "@id" : "dfc-m:Unit" } ], - "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { + "skos:prefLabel" : [ { "@language" : "en", "@value" : "Product measure glossary " }, { @@ -347,20 +354,20 @@ } ] }, { "@id" : "dfc-m:Decilitre", - "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], - "http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ { - "@id" : "unit:DeciL" + "@type" : [ "skos:Concept" ], + "rdf:isDefinedBy" : [ { + "@id" : "dfc-m:DeciL" } ], - "http://www.w3.org/2004/02/skos/core#broader" : [ { + "skos:broader" : [ { "@id" : "dfc-m:QuantityUnit" } ], - "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-m:DFC_ProductGlossary_Measure" + "skos:inScheme" : [ { + "@id" : "dfc-m:Measures" } ], - "http://www.w3.org/2004/02/skos/core#notation" : [ { + "skos:notation" : [ { "@value" : "dl" } ], - "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { + "skos:prefLabel" : [ { "@language" : "en", "@value" : "decilitre" }, { @@ -369,20 +376,20 @@ } ] }, { "@id" : "dfc-m:Decimetre", - "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], - "http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ { - "@id" : "unit:DeciM" + "@type" : [ "skos:Concept" ], + "rdf:isDefinedBy" : [ { + "@id" : "dfc-m:DeciM" } ], - "http://www.w3.org/2004/02/skos/core#broader" : [ { + "skos:broader" : [ { "@id" : "dfc-m:QuantityUnit" } ], - "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-m:DFC_ProductGlossary_Measure" + "skos:inScheme" : [ { + "@id" : "dfc-m:Measures" } ], - "http://www.w3.org/2004/02/skos/core#notation" : [ { + "skos:notation" : [ { "@value" : "dm" } ], - "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { + "skos:prefLabel" : [ { "@language" : "en", "@value" : "decimetre" }, { @@ -391,14 +398,14 @@ } ] }, { "@id" : "dfc-m:Depth", - "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], - "http://www.w3.org/2004/02/skos/core#broader" : [ { + "@type" : [ "skos:Concept" ], + "skos:broader" : [ { "@id" : "dfc-m:PhysicalDimension" } ], - "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-m:DFC_ProductGlossary_Measure" + "skos:inScheme" : [ { + "@id" : "dfc-m:Measures" } ], - "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { + "skos:prefLabel" : [ { "@language" : "en", "@value" : "Depth" }, { @@ -407,7 +414,7 @@ } ] }, { "@id" : "dfc-m:Dimension", - "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], + "@type" : [ "skos:Concept" ], "http://purl.org/dc/elements/1.1/description" : [ { "@language" : "en", "@value" : "Dimensions used to describe DFC's product characteristics" @@ -415,10 +422,10 @@ "@language" : "fr", "@value" : "Dimensions utilisées pour décrire les charactéristiques produit dans DFC" } ], - "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-m:DFC_ProductGlossary_Measure" + "skos:inScheme" : [ { + "@id" : "dfc-m:Measures" } ], - "http://www.w3.org/2004/02/skos/core#narrower" : [ { + "skos:narrower" : [ { "@id" : "dfc-m:AllergenDimension" }, { "@id" : "dfc-m:NutrientDimension" @@ -427,26 +434,26 @@ }, { "@id" : "dfc-m:PhysicalDimension" } ], - "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { + "skos:prefLabel" : [ { "@language" : "en", "@value" : "Dimension" }, { "@language" : "fr", "@value" : "Dimension" } ], - "http://www.w3.org/2004/02/skos/core#topConceptOf" : [ { - "@id" : "dfc-m:DFC_ProductGlossary_Measure" + "skos:topConceptOf" : [ { + "@id" : "dfc-m:Measures" } ] }, { "@id" : "dfc-m:EcoScore", - "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], - "http://www.w3.org/2004/02/skos/core#broader" : [ { + "@type" : [ "skos:Concept" ], + "skos:broader" : [ { "@id" : "dfc-m:LabellingDimension" } ], - "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-m:DFC_ProductGlossary_Measure" + "skos:inScheme" : [ { + "@id" : "dfc-m:Measures" } ], - "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { + "skos:prefLabel" : [ { "@language" : "en", "@value" : "Eco-score" }, { @@ -455,14 +462,14 @@ } ] }, { "@id" : "dfc-m:Eggs", - "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], - "http://www.w3.org/2004/02/skos/core#broader" : [ { + "@type" : [ "skos:Concept" ], + "skos:broader" : [ { "@id" : "dfc-m:AllergenDimension" } ], - "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-m:DFC_ProductGlossary_Measure" + "skos:inScheme" : [ { + "@id" : "dfc-m:Measures" } ], - "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { + "skos:prefLabel" : [ { "@language" : "en", "@value" : "Eggs" }, { @@ -471,20 +478,20 @@ } ] }, { "@id" : "dfc-m:Euro", - "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], - "http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ { - "@id" : "unit:Euro" + "@type" : [ "skos:Concept" ], + "rdf:isDefinedBy" : [ { + "@id" : "dfc-m:Euro" } ], - "http://www.w3.org/2004/02/skos/core#broader" : [ { + "skos:broader" : [ { "@id" : "dfc-m:CurrencyUnit" } ], - "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-m:DFC_ProductGlossary_Measure" + "skos:inScheme" : [ { + "@id" : "dfc-m:Measures" } ], - "http://www.w3.org/2004/02/skos/core#notation" : [ { + "skos:notation" : [ { "@value" : "€" } ], - "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { + "skos:prefLabel" : [ { "@language" : "en", "@value" : "euro" }, { @@ -493,14 +500,14 @@ } ] }, { "@id" : "dfc-m:Fat", - "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], - "http://www.w3.org/2004/02/skos/core#broader" : [ { + "@type" : [ "skos:Concept" ], + "skos:broader" : [ { "@id" : "dfc-m:NutrientDimension" } ], - "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-m:DFC_ProductGlossary_Measure" + "skos:inScheme" : [ { + "@id" : "dfc-m:Measures" } ], - "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { + "skos:prefLabel" : [ { "@language" : "en", "@value" : "Fat" }, { @@ -509,14 +516,14 @@ } ] }, { "@id" : "dfc-m:Fibre", - "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], - "http://www.w3.org/2004/02/skos/core#broader" : [ { + "@type" : [ "skos:Concept" ], + "skos:broader" : [ { "@id" : "dfc-m:NutrientDimension" } ], - "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-m:DFC_ProductGlossary_Measure" + "skos:inScheme" : [ { + "@id" : "dfc-m:Measures" } ], - "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { + "skos:prefLabel" : [ { "@language" : "en", "@value" : "Fibre" }, { @@ -525,14 +532,14 @@ } ] }, { "@id" : "dfc-m:Fishs", - "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], - "http://www.w3.org/2004/02/skos/core#broader" : [ { + "@type" : [ "skos:Concept" ], + "skos:broader" : [ { "@id" : "dfc-m:AllergenDimension" } ], - "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-m:DFC_ProductGlossary_Measure" + "skos:inScheme" : [ { + "@id" : "dfc-m:Measures" } ], - "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { + "skos:prefLabel" : [ { "@language" : "en", "@value" : "fishs" }, { @@ -541,14 +548,14 @@ } ] }, { "@id" : "dfc-m:Fluoride", - "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], - "http://www.w3.org/2004/02/skos/core#broader" : [ { + "@type" : [ "skos:Concept" ], + "skos:broader" : [ { "@id" : "dfc-m:NutrientDimension" } ], - "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-m:DFC_ProductGlossary_Measure" + "skos:inScheme" : [ { + "@id" : "dfc-m:Measures" } ], - "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { + "skos:prefLabel" : [ { "@language" : "en", "@value" : "Fluoride" }, { @@ -557,14 +564,14 @@ } ] }, { "@id" : "dfc-m:FolicAcid", - "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], - "http://www.w3.org/2004/02/skos/core#broader" : [ { + "@type" : [ "skos:Concept" ], + "skos:broader" : [ { "@id" : "dfc-m:NutrientDimension" } ], - "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-m:DFC_ProductGlossary_Measure" + "skos:inScheme" : [ { + "@id" : "dfc-m:Measures" } ], - "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { + "skos:prefLabel" : [ { "@language" : "fr", "@value" : "Acide folique" }, { @@ -573,20 +580,20 @@ } ] }, { "@id" : "dfc-m:Gallon", - "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], - "http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ { - "@id" : "unit:GAL_UK" + "@type" : [ "skos:Concept" ], + "rdf:isDefinedBy" : [ { + "@id" : "dfc-m:GAL_UK" } ], - "http://www.w3.org/2004/02/skos/core#broader" : [ { + "skos:broader" : [ { "@id" : "dfc-m:QuantityUnit" } ], - "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-m:DFC_ProductGlossary_Measure" + "skos:inScheme" : [ { + "@id" : "dfc-m:Measures" } ], - "http://www.w3.org/2004/02/skos/core#notation" : [ { + "skos:notation" : [ { "@value" : "gal" } ], - "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { + "skos:prefLabel" : [ { "@language" : "fr", "@value" : "gallon (GB)" }, { @@ -595,20 +602,20 @@ } ] }, { "@id" : "dfc-m:Gram", - "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], - "http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ { - "@id" : "unit:GM" + "@type" : [ "skos:Concept" ], + "rdf:isDefinedBy" : [ { + "@id" : "dfc-m:GM" } ], - "http://www.w3.org/2004/02/skos/core#broader" : [ { + "skos:broader" : [ { "@id" : "dfc-m:QuantityUnit" } ], - "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-m:DFC_ProductGlossary_Measure" + "skos:inScheme" : [ { + "@id" : "dfc-m:Measures" } ], - "http://www.w3.org/2004/02/skos/core#notation" : [ { + "skos:notation" : [ { "@value" : "g" } ], - "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { + "skos:prefLabel" : [ { "@language" : "en", "@value" : "gram" }, { @@ -617,14 +624,14 @@ } ] }, { "@id" : "dfc-m:Height", - "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], - "http://www.w3.org/2004/02/skos/core#broader" : [ { + "@type" : [ "skos:Concept" ], + "skos:broader" : [ { "@id" : "dfc-m:PhysicalDimension" } ], - "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-m:DFC_ProductGlossary_Measure" + "skos:inScheme" : [ { + "@id" : "dfc-m:Measures" } ], - "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { + "skos:prefLabel" : [ { "@language" : "fr", "@value" : "Hauteur" }, { @@ -633,20 +640,20 @@ } ] }, { "@id" : "dfc-m:Inch", - "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], - "http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ { - "@id" : "unit:IN" + "@type" : [ "skos:Concept" ], + "rdf:isDefinedBy" : [ { + "@id" : "dfc-m:IN" } ], - "http://www.w3.org/2004/02/skos/core#broader" : [ { + "skos:broader" : [ { "@id" : "dfc-m:QuantityUnit" } ], - "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-m:DFC_ProductGlossary_Measure" + "skos:inScheme" : [ { + "@id" : "dfc-m:Measures" } ], - "http://www.w3.org/2004/02/skos/core#notation" : [ { + "skos:notation" : [ { "@value" : "in" } ], - "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { + "skos:prefLabel" : [ { "@language" : "en", "@value" : "inch" }, { @@ -655,14 +662,14 @@ } ] }, { "@id" : "dfc-m:Iodine", - "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], - "http://www.w3.org/2004/02/skos/core#broader" : [ { + "@type" : [ "skos:Concept" ], + "skos:broader" : [ { "@id" : "dfc-m:NutrientDimension" } ], - "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-m:DFC_ProductGlossary_Measure" + "skos:inScheme" : [ { + "@id" : "dfc-m:Measures" } ], - "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { + "skos:prefLabel" : [ { "@language" : "en", "@value" : "Iodine" }, { @@ -671,14 +678,14 @@ } ] }, { "@id" : "dfc-m:Iron", - "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], - "http://www.w3.org/2004/02/skos/core#broader" : [ { + "@type" : [ "skos:Concept" ], + "skos:broader" : [ { "@id" : "dfc-m:NutrientDimension" } ], - "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-m:DFC_ProductGlossary_Measure" + "skos:inScheme" : [ { + "@id" : "dfc-m:Measures" } ], - "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { + "skos:prefLabel" : [ { "@language" : "fr", "@value" : "Fer" }, { @@ -687,20 +694,20 @@ } ] }, { "@id" : "dfc-m:Kilogram", - "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], - "http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ { - "@id" : "unit:KiloGM" + "@type" : [ "skos:Concept" ], + "rdf:isDefinedBy" : [ { + "@id" : "dfc-m:KiloGM" } ], - "http://www.w3.org/2004/02/skos/core#broader" : [ { + "skos:broader" : [ { "@id" : "dfc-m:QuantityUnit" } ], - "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-m:DFC_ProductGlossary_Measure" + "skos:inScheme" : [ { + "@id" : "dfc-m:Measures" } ], - "http://www.w3.org/2004/02/skos/core#notation" : [ { + "skos:notation" : [ { "@value" : "kg" } ], - "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { + "skos:prefLabel" : [ { "@language" : "en", "@value" : "kilogram" }, { @@ -709,20 +716,20 @@ } ] }, { "@id" : "dfc-m:Kilometre", - "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], - "http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ { - "@id" : "unit:KiloM" + "@type" : [ "skos:Concept" ], + "rdf:isDefinedBy" : [ { + "@id" : "dfc-m:KiloM" } ], - "http://www.w3.org/2004/02/skos/core#broader" : [ { + "skos:broader" : [ { "@id" : "dfc-m:QuantityUnit" } ], - "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-m:DFC_ProductGlossary_Measure" + "skos:inScheme" : [ { + "@id" : "dfc-m:Measures" } ], - "http://www.w3.org/2004/02/skos/core#notation" : [ { + "skos:notation" : [ { "@value" : "km" } ], - "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { + "skos:prefLabel" : [ { "@language" : "en", "@value" : "kilometre" }, { @@ -731,21 +738,21 @@ } ] }, { "@id" : "dfc-m:LabellingDimension", - "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], - "http://www.w3.org/2004/02/skos/core#broader" : [ { + "@type" : [ "skos:Concept" ], + "skos:broader" : [ { "@id" : "dfc-m:Dimension" } ], - "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-m:DFC_ProductGlossary_Measure" + "skos:inScheme" : [ { + "@id" : "dfc-m:Measures" } ], - "http://www.w3.org/2004/02/skos/core#narrower" : [ { + "skos:narrower" : [ { "@id" : "dfc-m:NutriScore" }, { "@id" : "dfc-m:EcoScore" }, { "@id" : "dfc-m:PlanetScore" } ], - "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { + "skos:prefLabel" : [ { "@language" : "en", "@value" : "Labelling dimension" }, { @@ -754,14 +761,14 @@ } ] }, { "@id" : "dfc-m:LactoseMilks", - "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], - "http://www.w3.org/2004/02/skos/core#broader" : [ { + "@type" : [ "skos:Concept" ], + "skos:broader" : [ { "@id" : "dfc-m:AllergenDimension" } ], - "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-m:DFC_ProductGlossary_Measure" + "skos:inScheme" : [ { + "@id" : "dfc-m:Measures" } ], - "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { + "skos:prefLabel" : [ { "@language" : "en", "@value" : "Milk and lactose-based products" }, { @@ -770,20 +777,20 @@ } ] }, { "@id" : "dfc-m:Litre", - "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], - "http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ { - "@id" : "unit:L" + "@type" : [ "skos:Concept" ], + "rdf:isDefinedBy" : [ { + "@id" : "dfc-m:L" } ], - "http://www.w3.org/2004/02/skos/core#broader" : [ { + "skos:broader" : [ { "@id" : "dfc-m:QuantityUnit" } ], - "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-m:DFC_ProductGlossary_Measure" + "skos:inScheme" : [ { + "@id" : "dfc-m:Measures" } ], - "http://www.w3.org/2004/02/skos/core#notation" : [ { + "skos:notation" : [ { "@value" : "l" } ], - "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { + "skos:prefLabel" : [ { "@language" : "en", "@value" : "litre" }, { @@ -792,14 +799,14 @@ } ] }, { "@id" : "dfc-m:Lupine", - "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], - "http://www.w3.org/2004/02/skos/core#broader" : [ { + "@type" : [ "skos:Concept" ], + "skos:broader" : [ { "@id" : "dfc-m:AllergenDimension" } ], - "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-m:DFC_ProductGlossary_Measure" + "skos:inScheme" : [ { + "@id" : "dfc-m:Measures" } ], - "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { + "skos:prefLabel" : [ { "@language" : "en", "@value" : "Lupine" }, { @@ -808,14 +815,14 @@ } ] }, { "@id" : "dfc-m:Magnesium", - "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], - "http://www.w3.org/2004/02/skos/core#broader" : [ { + "@type" : [ "skos:Concept" ], + "skos:broader" : [ { "@id" : "dfc-m:NutrientDimension" } ], - "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-m:DFC_ProductGlossary_Measure" + "skos:inScheme" : [ { + "@id" : "dfc-m:Measures" } ], - "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { + "skos:prefLabel" : [ { "@language" : "en", "@value" : "Magnesium" }, { @@ -824,14 +831,14 @@ } ] }, { "@id" : "dfc-m:Manganese", - "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], - "http://www.w3.org/2004/02/skos/core#broader" : [ { + "@type" : [ "skos:Concept" ], + "skos:broader" : [ { "@id" : "dfc-m:NutrientDimension" } ], - "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-m:DFC_ProductGlossary_Measure" + "skos:inScheme" : [ { + "@id" : "dfc-m:Measures" } ], - "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { + "skos:prefLabel" : [ { "@language" : "en", "@value" : "Manganese" }, { @@ -840,20 +847,20 @@ } ] }, { "@id" : "dfc-m:Metre", - "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], - "http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ { - "@id" : "unit:M" + "@type" : [ "skos:Concept" ], + "rdf:isDefinedBy" : [ { + "@id" : "dfc-m:M" } ], - "http://www.w3.org/2004/02/skos/core#broader" : [ { + "skos:broader" : [ { "@id" : "dfc-m:QuantityUnit" } ], - "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-m:DFC_ProductGlossary_Measure" + "skos:inScheme" : [ { + "@id" : "dfc-m:Measures" } ], - "http://www.w3.org/2004/02/skos/core#notation" : [ { + "skos:notation" : [ { "@value" : "m" } ], - "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { + "skos:prefLabel" : [ { "@language" : "en", "@value" : "metre" }, { @@ -862,20 +869,20 @@ } ] }, { "@id" : "dfc-m:Milligram", - "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], - "http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ { - "@id" : "unit:MilliGM" + "@type" : [ "skos:Concept" ], + "rdf:isDefinedBy" : [ { + "@id" : "dfc-m:MilliGM" } ], - "http://www.w3.org/2004/02/skos/core#broader" : [ { + "skos:broader" : [ { "@id" : "dfc-m:QuantityUnit" } ], - "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-m:DFC_ProductGlossary_Measure" + "skos:inScheme" : [ { + "@id" : "dfc-m:Measures" } ], - "http://www.w3.org/2004/02/skos/core#notation" : [ { + "skos:notation" : [ { "@value" : "g" } ], - "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { + "skos:prefLabel" : [ { "@language" : "en", "@value" : "milligram" }, { @@ -884,20 +891,20 @@ } ] }, { "@id" : "dfc-m:Millilitre", - "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], - "http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ { - "@id" : "unit:MilliL" + "@type" : [ "skos:Concept" ], + "rdf:isDefinedBy" : [ { + "@id" : "dfc-m:MilliL" } ], - "http://www.w3.org/2004/02/skos/core#broader" : [ { + "skos:broader" : [ { "@id" : "dfc-m:QuantityUnit" } ], - "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-m:DFC_ProductGlossary_Measure" + "skos:inScheme" : [ { + "@id" : "dfc-m:Measures" } ], - "http://www.w3.org/2004/02/skos/core#notation" : [ { + "skos:notation" : [ { "@value" : "ml" } ], - "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { + "skos:prefLabel" : [ { "@language" : "en", "@value" : "milliliter" }, { @@ -906,14 +913,14 @@ } ] }, { "@id" : "dfc-m:Molluscs", - "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], - "http://www.w3.org/2004/02/skos/core#broader" : [ { + "@type" : [ "skos:Concept" ], + "skos:broader" : [ { "@id" : "dfc-m:AllergenDimension" } ], - "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-m:DFC_ProductGlossary_Measure" + "skos:inScheme" : [ { + "@id" : "dfc-m:Measures" } ], - "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { + "skos:prefLabel" : [ { "@language" : "en", "@value" : "Molluscs" }, { @@ -922,14 +929,14 @@ } ] }, { "@id" : "dfc-m:MonosaturatedFat", - "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], - "http://www.w3.org/2004/02/skos/core#broader" : [ { + "@type" : [ "skos:Concept" ], + "skos:broader" : [ { "@id" : "dfc-m:NutrientDimension" } ], - "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-m:DFC_ProductGlossary_Measure" + "skos:inScheme" : [ { + "@id" : "dfc-m:Measures" } ], - "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { + "skos:prefLabel" : [ { "@language" : "fr", "@value" : "Graisse monosaturée" }, { @@ -938,14 +945,14 @@ } ] }, { "@id" : "dfc-m:Mustard", - "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], - "http://www.w3.org/2004/02/skos/core#broader" : [ { + "@type" : [ "skos:Concept" ], + "skos:broader" : [ { "@id" : "dfc-m:AllergenDimension" } ], - "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-m:DFC_ProductGlossary_Measure" + "skos:inScheme" : [ { + "@id" : "dfc-m:Measures" } ], - "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { + "skos:prefLabel" : [ { "@language" : "en", "@value" : "Mustard" }, { @@ -954,14 +961,14 @@ } ] }, { "@id" : "dfc-m:NutriScore", - "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], - "http://www.w3.org/2004/02/skos/core#broader" : [ { + "@type" : [ "skos:Concept" ], + "skos:broader" : [ { "@id" : "dfc-m:LabellingDimension" } ], - "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-m:DFC_ProductGlossary_Measure" + "skos:inScheme" : [ { + "@id" : "dfc-m:Measures" } ], - "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { + "skos:prefLabel" : [ { "@language" : "en", "@value" : "Nutri-score" }, { @@ -970,14 +977,14 @@ } ] }, { "@id" : "dfc-m:NutrientDimension", - "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], - "http://www.w3.org/2004/02/skos/core#broader" : [ { + "@type" : [ "skos:Concept" ], + "skos:broader" : [ { "@id" : "dfc-m:Dimension" } ], - "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-m:DFC_ProductGlossary_Measure" + "skos:inScheme" : [ { + "@id" : "dfc-m:Measures" } ], - "http://www.w3.org/2004/02/skos/core#narrower" : [ { + "skos:narrower" : [ { "@id" : "dfc-m:Calcium" }, { "@id" : "dfc-m:Carbohydrates" @@ -1046,7 +1053,7 @@ }, { "@id" : "dfc-m:Zinc" } ], - "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { + "skos:prefLabel" : [ { "@language" : "en", "@value" : "Nutrient dimension" }, { @@ -1055,14 +1062,14 @@ } ] }, { "@id" : "dfc-m:Nuts", - "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], - "http://www.w3.org/2004/02/skos/core#broader" : [ { + "@type" : [ "skos:Concept" ], + "skos:broader" : [ { "@id" : "dfc-m:AllergenDimension" } ], - "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-m:DFC_ProductGlossary_Measure" + "skos:inScheme" : [ { + "@id" : "dfc-m:Measures" } ], - "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { + "skos:prefLabel" : [ { "@language" : "en", "@value" : "Nuts" }, { @@ -1071,17 +1078,17 @@ } ] }, { "@id" : "dfc-m:Package", - "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], - "http://www.w3.org/2004/02/skos/core#broader" : [ { + "@type" : [ "skos:Concept" ], + "skos:broader" : [ { "@id" : "dfc-m:QuantityUnit" } ], - "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-m:DFC_ProductGlossary_Measure" + "skos:inScheme" : [ { + "@id" : "dfc-m:Measures" } ], - "http://www.w3.org/2004/02/skos/core#notation" : [ { + "skos:notation" : [ { "@value" : "pack" } ], - "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { + "skos:prefLabel" : [ { "@language" : "fr", "@value" : "colis" }, { @@ -1090,14 +1097,14 @@ } ] }, { "@id" : "dfc-m:Peanuts", - "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], - "http://www.w3.org/2004/02/skos/core#broader" : [ { + "@type" : [ "skos:Concept" ], + "skos:broader" : [ { "@id" : "dfc-m:AllergenDimension" } ], - "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-m:DFC_ProductGlossary_Measure" + "skos:inScheme" : [ { + "@id" : "dfc-m:Measures" } ], - "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { + "skos:prefLabel" : [ { "@language" : "en", "@value" : "Peanuts" }, { @@ -1106,17 +1113,17 @@ } ] }, { "@id" : "dfc-m:Percent", - "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], - "http://www.w3.org/2004/02/skos/core#broader" : [ { + "@type" : [ "skos:Concept" ], + "skos:broader" : [ { "@id" : "dfc-m:QuantityUnit" } ], - "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-m:DFC_ProductGlossary_Measure" + "skos:inScheme" : [ { + "@id" : "dfc-m:Measures" } ], - "http://www.w3.org/2004/02/skos/core#notation" : [ { + "skos:notation" : [ { "@value" : "%" } ], - "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { + "skos:prefLabel" : [ { "@language" : "en", "@value" : "percent" }, { @@ -1125,14 +1132,14 @@ } ] }, { "@id" : "dfc-m:Phosphorus", - "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], - "http://www.w3.org/2004/02/skos/core#broader" : [ { + "@type" : [ "skos:Concept" ], + "skos:broader" : [ { "@id" : "dfc-m:NutrientDimension" } ], - "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-m:DFC_ProductGlossary_Measure" + "skos:inScheme" : [ { + "@id" : "dfc-m:Measures" } ], - "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { + "skos:prefLabel" : [ { "@language" : "fr", "@value" : "Phosphore" }, { @@ -1141,14 +1148,14 @@ } ] }, { "@id" : "dfc-m:PhysicalDimension", - "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], - "http://www.w3.org/2004/02/skos/core#broader" : [ { + "@type" : [ "skos:Concept" ], + "skos:broader" : [ { "@id" : "dfc-m:Dimension" } ], - "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-m:DFC_ProductGlossary_Measure" + "skos:inScheme" : [ { + "@id" : "dfc-m:Measures" } ], - "http://www.w3.org/2004/02/skos/core#narrower" : [ { + "skos:narrower" : [ { "@id" : "dfc-m:Depth" }, { "@id" : "dfc-m:Height" @@ -1159,7 +1166,7 @@ }, { "@id" : "dfc-m:Width" } ], - "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { + "skos:prefLabel" : [ { "@language" : "en", "@value" : "Physical dimension" }, { @@ -1168,17 +1175,17 @@ } ] }, { "@id" : "dfc-m:Piece", - "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], - "http://www.w3.org/2004/02/skos/core#broader" : [ { + "@type" : [ "skos:Concept" ], + "skos:broader" : [ { "@id" : "dfc-m:QuantityUnit" } ], - "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-m:DFC_ProductGlossary_Measure" + "skos:inScheme" : [ { + "@id" : "dfc-m:Measures" } ], - "http://www.w3.org/2004/02/skos/core#notation" : [ { + "skos:notation" : [ { "@value" : "u" } ], - "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { + "skos:prefLabel" : [ { "@language" : "en", "@value" : "piece" }, { @@ -1187,14 +1194,14 @@ } ] }, { "@id" : "dfc-m:PlanetScore", - "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], - "http://www.w3.org/2004/02/skos/core#broader" : [ { + "@type" : [ "skos:Concept" ], + "skos:broader" : [ { "@id" : "dfc-m:LabellingDimension" } ], - "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-m:DFC_ProductGlossary_Measure" + "skos:inScheme" : [ { + "@id" : "dfc-m:Measures" } ], - "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { + "skos:prefLabel" : [ { "@language" : "en", "@value" : "Planet-score" }, { @@ -1203,14 +1210,14 @@ } ] }, { "@id" : "dfc-m:PolyunsaturatedFat", - "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], - "http://www.w3.org/2004/02/skos/core#broader" : [ { + "@type" : [ "skos:Concept" ], + "skos:broader" : [ { "@id" : "dfc-m:NutrientDimension" } ], - "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-m:DFC_ProductGlossary_Measure" + "skos:inScheme" : [ { + "@id" : "dfc-m:Measures" } ], - "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { + "skos:prefLabel" : [ { "@language" : "fr", "@value" : "Graisse poly-insaturée" }, { @@ -1219,14 +1226,14 @@ } ] }, { "@id" : "dfc-m:Potassium", - "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], - "http://www.w3.org/2004/02/skos/core#broader" : [ { + "@type" : [ "skos:Concept" ], + "skos:broader" : [ { "@id" : "dfc-m:NutrientDimension" } ], - "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-m:DFC_ProductGlossary_Measure" + "skos:inScheme" : [ { + "@id" : "dfc-m:Measures" } ], - "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { + "skos:prefLabel" : [ { "@language" : "en", "@value" : "Potassium" }, { @@ -1235,20 +1242,20 @@ } ] }, { "@id" : "dfc-m:PoundMass", - "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], - "http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ { - "@id" : "unit:LB" + "@type" : [ "skos:Concept" ], + "rdf:isDefinedBy" : [ { + "@id" : "dfc-m:LB" } ], - "http://www.w3.org/2004/02/skos/core#broader" : [ { + "skos:broader" : [ { "@id" : "dfc-m:QuantityUnit" } ], - "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-m:DFC_ProductGlossary_Measure" + "skos:inScheme" : [ { + "@id" : "dfc-m:Measures" } ], - "http://www.w3.org/2004/02/skos/core#notation" : [ { + "skos:notation" : [ { "@value" : "lb" } ], - "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { + "skos:prefLabel" : [ { "@language" : "en", "@value" : "pound" }, { @@ -1257,20 +1264,20 @@ } ] }, { "@id" : "dfc-m:PoundSterling", - "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], - "http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ { - "@id" : "unit:PoundSterling" + "@type" : [ "skos:Concept" ], + "rdf:isDefinedBy" : [ { + "@id" : "dfc-m:PoundSterling" } ], - "http://www.w3.org/2004/02/skos/core#broader" : [ { + "skos:broader" : [ { "@id" : "dfc-m:CurrencyUnit" } ], - "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-m:DFC_ProductGlossary_Measure" + "skos:inScheme" : [ { + "@id" : "dfc-m:Measures" } ], - "http://www.w3.org/2004/02/skos/core#notation" : [ { + "skos:notation" : [ { "@value" : "£" } ], - "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { + "skos:prefLabel" : [ { "@language" : "fr", "@value" : "livre sterling" }, { @@ -1279,14 +1286,14 @@ } ] }, { "@id" : "dfc-m:Protein", - "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], - "http://www.w3.org/2004/02/skos/core#broader" : [ { + "@type" : [ "skos:Concept" ], + "skos:broader" : [ { "@id" : "dfc-m:NutrientDimension" } ], - "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-m:DFC_ProductGlossary_Measure" + "skos:inScheme" : [ { + "@id" : "dfc-m:Measures" } ], - "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { + "skos:prefLabel" : [ { "@language" : "en", "@value" : "Protein" }, { @@ -1295,14 +1302,14 @@ } ] }, { "@id" : "dfc-m:QuantityUnit", - "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], - "http://www.w3.org/2004/02/skos/core#broader" : [ { + "@type" : [ "skos:Concept" ], + "skos:broader" : [ { "@id" : "dfc-m:Unit" } ], - "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-m:DFC_ProductGlossary_Measure" + "skos:inScheme" : [ { + "@id" : "dfc-m:Measures" } ], - "http://www.w3.org/2004/02/skos/core#narrower" : [ { + "skos:narrower" : [ { "@id" : "dfc-m:Centilitre" }, { "@id" : "dfc-m:Centimetre" @@ -1341,81 +1348,81 @@ }, { "@id" : "dfc-m:Tonne" }, { - "@id" : "http://static.datafoodconsortium.org/data/ProductGlossary_Measure.rdf#4Pack" + "@id" : "dfc-m:4Pack" }, { - "@id" : "http://static.datafoodconsortium.org/data/ProductGlossary_Measure.rdf#6Pack" + "@id" : "dfc-m:6Pack" }, { - "@id" : "http://static.datafoodconsortium.org/data/ProductGlossary_Measure.rdf#Bundle" + "@id" : "dfc-m:Bundle" }, { - "@id" : "http://static.datafoodconsortium.org/data/ProductGlossary_Measure.rdf#Bag" + "@id" : "dfc-m:Bag" }, { - "@id" : "http://static.datafoodconsortium.org/data/ProductGlossary_Measure.rdf#Bunch" + "@id" : "dfc-m:Bunch" }, { - "@id" : "http://static.datafoodconsortium.org/data/ProductGlossary_Measure.rdf#Bucket" + "@id" : "dfc-m:Bucket" }, { - "@id" : "http://static.datafoodconsortium.org/data/ProductGlossary_Measure.rdf#Basket" + "@id" : "dfc-m:Basket" }, { - "@id" : "http://static.datafoodconsortium.org/data/ProductGlossary_Measure.rdf#Bottle" + "@id" : "dfc-m:Bottle" }, { - "@id" : "http://static.datafoodconsortium.org/data/ProductGlossary_Measure.rdf#Box" + "@id" : "dfc-m:Box" }, { - "@id" : "http://static.datafoodconsortium.org/data/ProductGlossary_Measure.rdf#BeerCrate" + "@id" : "dfc-m:BeerCrate" }, { - "@id" : "http://static.datafoodconsortium.org/data/ProductGlossary_Measure.rdf#Cask" + "@id" : "dfc-m:Cask" }, { - "@id" : "http://static.datafoodconsortium.org/data/ProductGlossary_Measure.rdf#Carton" + "@id" : "dfc-m:Carton" }, { - "@id" : "http://static.datafoodconsortium.org/data/ProductGlossary_Measure.rdf#Cup" + "@id" : "dfc-m:Cup" }, { - "@id" : "http://static.datafoodconsortium.org/data/ProductGlossary_Measure.rdf#Can" + "@id" : "dfc-m:Can" }, { - "@id" : "http://static.datafoodconsortium.org/data/ProductGlossary_Measure.rdf#Drum" + "@id" : "dfc-m:Drum" }, { - "@id" : "http://static.datafoodconsortium.org/data/ProductGlossary_Measure.rdf#Dozen" + "@id" : "dfc-m:Dozen" }, { - "@id" : "http://static.datafoodconsortium.org/data/ProductGlossary_Measure.rdf#HalfDozen" + "@id" : "dfc-m:HalfDozen" }, { - "@id" : "http://static.datafoodconsortium.org/data/ProductGlossary_Measure.rdf#Jar" + "@id" : "dfc-m:Jar" }, { - "@id" : "http://static.datafoodconsortium.org/data/ProductGlossary_Measure.rdf#Keg" + "@id" : "dfc-m:Keg" }, { - "@id" : "http://static.datafoodconsortium.org/data/ProductGlossary_Measure.rdf#Kit" + "@id" : "dfc-m:Kit" }, { - "@id" : "http://static.datafoodconsortium.org/data/ProductGlossary_Measure.rdf#Net" + "@id" : "dfc-m:Net" }, { - "@id" : "http://static.datafoodconsortium.org/data/ProductGlossary_Measure.rdf#Packet" + "@id" : "dfc-m:Packet" }, { - "@id" : "http://static.datafoodconsortium.org/data/ProductGlossary_Measure.rdf#Punnet" + "@id" : "dfc-m:Punnet" }, { - "@id" : "http://static.datafoodconsortium.org/data/ProductGlossary_Measure.rdf#Pouch" + "@id" : "dfc-m:Pouch" }, { - "@id" : "http://static.datafoodconsortium.org/data/ProductGlossary_Measure.rdf#Pair" + "@id" : "dfc-m:Pair" }, { - "@id" : "http://static.datafoodconsortium.org/data/ProductGlossary_Measure.rdf#Pot" + "@id" : "dfc-m:Pot" }, { - "@id" : "http://static.datafoodconsortium.org/data/ProductGlossary_Measure.rdf#Tray" + "@id" : "dfc-m:Tray" }, { - "@id" : "http://static.datafoodconsortium.org/data/ProductGlossary_Measure.rdf#Pallet" + "@id" : "dfc-m:Pallet" }, { - "@id" : "http://static.datafoodconsortium.org/data/ProductGlossary_Measure.rdf#Roll" + "@id" : "dfc-m:Roll" }, { - "@id" : "http://static.datafoodconsortium.org/data/ProductGlossary_Measure.rdf#Tablet" + "@id" : "dfc-m:Tablet" }, { - "@id" : "http://static.datafoodconsortium.org/data/ProductGlossary_Measure.rdf#Tub" + "@id" : "dfc-m:Tub" }, { - "@id" : "http://static.datafoodconsortium.org/data/ProductGlossary_Measure.rdf#Tube" + "@id" : "dfc-m:Tube" }, { - "@id" : "http://static.datafoodconsortium.org/data/ProductGlossary_Measure.rdf#Tin" + "@id" : "dfc-m:Tin" }, { - "@id" : "http://static.datafoodconsortium.org/data/ProductGlossary_Measure.rdf#LiquidBulk" + "@id" : "dfc-m:LiquidBulk" }, { - "@id" : "http://static.datafoodconsortium.org/data/ProductGlossary_Measure.rdf#NoduleBulk" + "@id" : "dfc-m:NoduleBulk" }, { - "@id" : "http://static.datafoodconsortium.org/data/ProductGlossary_Measure.rdf#GrainBulk" + "@id" : "dfc-m:GrainBulk" }, { - "@id" : "http://static.datafoodconsortium.org/data/ProductGlossary_Measure.rdf#PowderBulk" + "@id" : "dfc-m:PowderBulk" } ], - "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { + "skos:prefLabel" : [ { "@language" : "en", "@value" : "Quantity unit" }, { @@ -1424,14 +1431,14 @@ } ] }, { "@id" : "dfc-m:Salt", - "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], - "http://www.w3.org/2004/02/skos/core#broader" : [ { + "@type" : [ "skos:Concept" ], + "skos:broader" : [ { "@id" : "dfc-m:NutrientDimension" } ], - "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-m:DFC_ProductGlossary_Measure" + "skos:inScheme" : [ { + "@id" : "dfc-m:Measures" } ], - "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { + "skos:prefLabel" : [ { "@language" : "en", "@value" : "Salt" }, { @@ -1440,14 +1447,14 @@ } ] }, { "@id" : "dfc-m:SaturatedFat", - "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], - "http://www.w3.org/2004/02/skos/core#broader" : [ { + "@type" : [ "skos:Concept" ], + "skos:broader" : [ { "@id" : "dfc-m:NutrientDimension" } ], - "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-m:DFC_ProductGlossary_Measure" + "skos:inScheme" : [ { + "@id" : "dfc-m:Measures" } ], - "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { + "skos:prefLabel" : [ { "@language" : "fr", "@value" : "Graisse saturée" }, { @@ -1456,14 +1463,14 @@ } ] }, { "@id" : "dfc-m:Selenium", - "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], - "http://www.w3.org/2004/02/skos/core#broader" : [ { + "@type" : [ "skos:Concept" ], + "skos:broader" : [ { "@id" : "dfc-m:NutrientDimension" } ], - "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-m:DFC_ProductGlossary_Measure" + "skos:inScheme" : [ { + "@id" : "dfc-m:Measures" } ], - "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { + "skos:prefLabel" : [ { "@language" : "en", "@value" : "Selenium" }, { @@ -1472,14 +1479,14 @@ } ] }, { "@id" : "dfc-m:SesameSeeds", - "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], - "http://www.w3.org/2004/02/skos/core#broader" : [ { + "@type" : [ "skos:Concept" ], + "skos:broader" : [ { "@id" : "dfc-m:AllergenDimension" } ], - "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-m:DFC_ProductGlossary_Measure" + "skos:inScheme" : [ { + "@id" : "dfc-m:Measures" } ], - "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { + "skos:prefLabel" : [ { "@language" : "en", "@value" : "Sesame seeds" }, { @@ -1488,14 +1495,14 @@ } ] }, { "@id" : "dfc-m:Sodium", - "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], - "http://www.w3.org/2004/02/skos/core#broader" : [ { + "@type" : [ "skos:Concept" ], + "skos:broader" : [ { "@id" : "dfc-m:NutrientDimension" } ], - "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-m:DFC_ProductGlossary_Measure" + "skos:inScheme" : [ { + "@id" : "dfc-m:Measures" } ], - "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { + "skos:prefLabel" : [ { "@language" : "en", "@value" : "Sodium" }, { @@ -1504,14 +1511,14 @@ } ] }, { "@id" : "dfc-m:Soy", - "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], - "http://www.w3.org/2004/02/skos/core#broader" : [ { + "@type" : [ "skos:Concept" ], + "skos:broader" : [ { "@id" : "dfc-m:AllergenDimension" } ], - "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-m:DFC_ProductGlossary_Measure" + "skos:inScheme" : [ { + "@id" : "dfc-m:Measures" } ], - "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { + "skos:prefLabel" : [ { "@language" : "en", "@value" : "Soy" }, { @@ -1520,14 +1527,14 @@ } ] }, { "@id" : "dfc-m:Starch", - "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], - "http://www.w3.org/2004/02/skos/core#broader" : [ { + "@type" : [ "skos:Concept" ], + "skos:broader" : [ { "@id" : "dfc-m:NutrientDimension" } ], - "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-m:DFC_ProductGlossary_Measure" + "skos:inScheme" : [ { + "@id" : "dfc-m:Measures" } ], - "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { + "skos:prefLabel" : [ { "@language" : "fr", "@value" : "Amidon" }, { @@ -1536,14 +1543,14 @@ } ] }, { "@id" : "dfc-m:Sugars", - "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], - "http://www.w3.org/2004/02/skos/core#broader" : [ { + "@type" : [ "skos:Concept" ], + "skos:broader" : [ { "@id" : "dfc-m:NutrientDimension" } ], - "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-m:DFC_ProductGlossary_Measure" + "skos:inScheme" : [ { + "@id" : "dfc-m:Measures" } ], - "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { + "skos:prefLabel" : [ { "@language" : "fr", "@value" : "Sucres" }, { @@ -1552,14 +1559,14 @@ } ] }, { "@id" : "dfc-m:Sulphites", - "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], - "http://www.w3.org/2004/02/skos/core#broader" : [ { + "@type" : [ "skos:Concept" ], + "skos:broader" : [ { "@id" : "dfc-m:AllergenDimension" } ], - "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-m:DFC_ProductGlossary_Measure" + "skos:inScheme" : [ { + "@id" : "dfc-m:Measures" } ], - "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { + "skos:prefLabel" : [ { "@language" : "en", "@value" : "Sulfur dioxide and sulphites in a concentration of more than 10mg/kg or 10mg/l (expressed as SO2)" }, { @@ -1568,20 +1575,20 @@ } ] }, { "@id" : "dfc-m:Tonne", - "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], - "http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ { - "@id" : "unit:TONNE" + "@type" : [ "skos:Concept" ], + "rdf:isDefinedBy" : [ { + "@id" : "dfc-m:TONNE" } ], - "http://www.w3.org/2004/02/skos/core#broader" : [ { + "skos:broader" : [ { "@id" : "dfc-m:QuantityUnit" } ], - "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-m:DFC_ProductGlossary_Measure" + "skos:inScheme" : [ { + "@id" : "dfc-m:Measures" } ], - "http://www.w3.org/2004/02/skos/core#notation" : [ { + "skos:notation" : [ { "@value" : "T" } ], - "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { + "skos:prefLabel" : [ { "@language" : "en", "@value" : "tonne" }, { @@ -1590,14 +1597,14 @@ } ] }, { "@id" : "dfc-m:Transfat", - "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], - "http://www.w3.org/2004/02/skos/core#broader" : [ { + "@type" : [ "skos:Concept" ], + "skos:broader" : [ { "@id" : "dfc-m:NutrientDimension" } ], - "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-m:DFC_ProductGlossary_Measure" + "skos:inScheme" : [ { + "@id" : "dfc-m:Measures" } ], - "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { + "skos:prefLabel" : [ { "@language" : "fr", "@value" : "Graisse trans" }, { @@ -1606,20 +1613,20 @@ } ] }, { "@id" : "dfc-m:USDollar", - "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], - "http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ { - "@id" : "unit:USDollar" + "@type" : [ "skos:Concept" ], + "rdf:isDefinedBy" : [ { + "@id" : "dfc-m:USDollar" } ], - "http://www.w3.org/2004/02/skos/core#broader" : [ { + "skos:broader" : [ { "@id" : "dfc-m:CurrencyUnit" } ], - "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-m:DFC_ProductGlossary_Measure" + "skos:inScheme" : [ { + "@id" : "dfc-m:Measures" } ], - "http://www.w3.org/2004/02/skos/core#notation" : [ { + "skos:notation" : [ { "@value" : "$US" } ], - "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { + "skos:prefLabel" : [ { "@language" : "fr", "@value" : "Dollar US" }, { @@ -1628,7 +1635,7 @@ } ] }, { "@id" : "dfc-m:Unit", - "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], + "@type" : [ "skos:Concept" ], "http://purl.org/dc/elements/1.1/description" : [ { "@language" : "en", "@value" : "Units used to measure DFC's quantitative values" @@ -1636,34 +1643,34 @@ "@language" : "fr", "@value" : "Unités utilisées pour mesurer les valeurs quantitatives dans DFC" } ], - "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-m:DFC_ProductGlossary_Measure" + "skos:inScheme" : [ { + "@id" : "dfc-m:Measures" } ], - "http://www.w3.org/2004/02/skos/core#narrower" : [ { + "skos:narrower" : [ { "@id" : "dfc-m:CurrencyUnit" }, { "@id" : "dfc-m:QuantityUnit" } ], - "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { + "skos:prefLabel" : [ { "@language" : "en", "@value" : "Unit" }, { "@language" : "fr", "@value" : "Unités" } ], - "http://www.w3.org/2004/02/skos/core#topConceptOf" : [ { - "@id" : "dfc-m:DFC_ProductGlossary_Measure" + "skos:topConceptOf" : [ { + "@id" : "dfc-m:Measures" } ] }, { "@id" : "dfc-m:VitaminA", - "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], - "http://www.w3.org/2004/02/skos/core#broader" : [ { + "@type" : [ "skos:Concept" ], + "skos:broader" : [ { "@id" : "dfc-m:NutrientDimension" } ], - "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-m:DFC_ProductGlossary_Measure" + "skos:inScheme" : [ { + "@id" : "dfc-m:Measures" } ], - "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { + "skos:prefLabel" : [ { "@language" : "en", "@value" : "Vitamin A" }, { @@ -1672,14 +1679,14 @@ } ] }, { "@id" : "dfc-m:VitaminB12", - "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], - "http://www.w3.org/2004/02/skos/core#broader" : [ { + "@type" : [ "skos:Concept" ], + "skos:broader" : [ { "@id" : "dfc-m:NutrientDimension" } ], - "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-m:DFC_ProductGlossary_Measure" + "skos:inScheme" : [ { + "@id" : "dfc-m:Measures" } ], - "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { + "skos:prefLabel" : [ { "@language" : "en", "@value" : "Vitamin B12" }, { @@ -1688,14 +1695,14 @@ } ] }, { "@id" : "dfc-m:VitaminB6", - "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], - "http://www.w3.org/2004/02/skos/core#broader" : [ { + "@type" : [ "skos:Concept" ], + "skos:broader" : [ { "@id" : "dfc-m:NutrientDimension" } ], - "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-m:DFC_ProductGlossary_Measure" + "skos:inScheme" : [ { + "@id" : "dfc-m:Measures" } ], - "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { + "skos:prefLabel" : [ { "@language" : "en", "@value" : "Vitamin B6" }, { @@ -1704,14 +1711,14 @@ } ] }, { "@id" : "dfc-m:VitaminC", - "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], - "http://www.w3.org/2004/02/skos/core#broader" : [ { + "@type" : [ "skos:Concept" ], + "skos:broader" : [ { "@id" : "dfc-m:NutrientDimension" } ], - "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-m:DFC_ProductGlossary_Measure" + "skos:inScheme" : [ { + "@id" : "dfc-m:Measures" } ], - "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { + "skos:prefLabel" : [ { "@language" : "en", "@value" : "Vitamin C" }, { @@ -1720,14 +1727,14 @@ } ] }, { "@id" : "dfc-m:VitaminD", - "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], - "http://www.w3.org/2004/02/skos/core#broader" : [ { + "@type" : [ "skos:Concept" ], + "skos:broader" : [ { "@id" : "dfc-m:NutrientDimension" } ], - "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-m:DFC_ProductGlossary_Measure" + "skos:inScheme" : [ { + "@id" : "dfc-m:Measures" } ], - "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { + "skos:prefLabel" : [ { "@language" : "en", "@value" : "Vitamin D" }, { @@ -1736,14 +1743,14 @@ } ] }, { "@id" : "dfc-m:VitaminE", - "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], - "http://www.w3.org/2004/02/skos/core#broader" : [ { + "@type" : [ "skos:Concept" ], + "skos:broader" : [ { "@id" : "dfc-m:NutrientDimension" } ], - "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-m:DFC_ProductGlossary_Measure" + "skos:inScheme" : [ { + "@id" : "dfc-m:Measures" } ], - "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { + "skos:prefLabel" : [ { "@language" : "en", "@value" : "Vitamin E" }, { @@ -1752,14 +1759,14 @@ } ] }, { "@id" : "dfc-m:VitaminK", - "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], - "http://www.w3.org/2004/02/skos/core#broader" : [ { + "@type" : [ "skos:Concept" ], + "skos:broader" : [ { "@id" : "dfc-m:NutrientDimension" } ], - "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-m:DFC_ProductGlossary_Measure" + "skos:inScheme" : [ { + "@id" : "dfc-m:Measures" } ], - "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { + "skos:prefLabel" : [ { "@language" : "en", "@value" : "Vitamin K" }, { @@ -1768,14 +1775,14 @@ } ] }, { "@id" : "dfc-m:Volume", - "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], - "http://www.w3.org/2004/02/skos/core#broader" : [ { + "@type" : [ "skos:Concept" ], + "skos:broader" : [ { "@id" : "dfc-m:PhysicalDimension" } ], - "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-m:DFC_ProductGlossary_Measure" + "skos:inScheme" : [ { + "@id" : "dfc-m:Measures" } ], - "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { + "skos:prefLabel" : [ { "@language" : "en", "@value" : "Volume" }, { @@ -1784,14 +1791,14 @@ } ] }, { "@id" : "dfc-m:Weight", - "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], - "http://www.w3.org/2004/02/skos/core#broader" : [ { + "@type" : [ "skos:Concept" ], + "skos:broader" : [ { "@id" : "dfc-m:PhysicalDimension" } ], - "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-m:DFC_ProductGlossary_Measure" + "skos:inScheme" : [ { + "@id" : "dfc-m:Measures" } ], - "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { + "skos:prefLabel" : [ { "@language" : "fr", "@value" : "Poids" }, { @@ -1800,14 +1807,14 @@ } ] }, { "@id" : "dfc-m:Width", - "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], - "http://www.w3.org/2004/02/skos/core#broader" : [ { + "@type" : [ "skos:Concept" ], + "skos:broader" : [ { "@id" : "dfc-m:PhysicalDimension" } ], - "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-m:DFC_ProductGlossary_Measure" + "skos:inScheme" : [ { + "@id" : "dfc-m:Measures" } ], - "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { + "skos:prefLabel" : [ { "@language" : "fr", "@value" : "Largeur" }, { @@ -1816,36 +1823,34 @@ } ] }, { "@id" : "dfc-m:Zinc", - "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], - "http://www.w3.org/2004/02/skos/core#broader" : [ { + "@type" : [ "skos:Concept" ], + "skos:broader" : [ { "@id" : "dfc-m:NutrientDimension" } ], - "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-m:DFC_ProductGlossary_Measure" + "skos:inScheme" : [ { + "@id" : "dfc-m:Measures" } ], - "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { + "skos:prefLabel" : [ { "@language" : "en", "@value" : "Zinc" }, { "@language" : "fr", "@value" : "Zinc" } ] - }, { - "@id" : "http://static.datafoodconsortium.org/data/ProductGlossary_Measure.rdf", - "@type" : [ "http://www.w3.org/2002/07/owl#Ontology" ] - }, { - "@id" : "http://static.datafoodconsortium.org/data/ProductGlossary_Measure.rdf#4Pack", - "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], - "http://www.w3.org/2004/02/skos/core#broader" : [ { + }, + { + "@id" : "dfc-m:4Pack", + "@type" : [ "skos:Concept" ], + "skos:broader" : [ { "@id" : "dfc-m:QuantityUnit" } ], - "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-m:DFC_ProductGlossary_Measure" + "skos:inScheme" : [ { + "@id" : "dfc-m:Measures" } ], - "http://www.w3.org/2004/02/skos/core#notation" : [ { + "skos:notation" : [ { "@value" : "4p" } ], - "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { + "skos:prefLabel" : [ { "@language" : "en", "@value" : "4 pack" }, { @@ -1853,18 +1858,18 @@ "@value" : "pack de 4" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/ProductGlossary_Measure.rdf#6Pack", - "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], - "http://www.w3.org/2004/02/skos/core#broader" : [ { + "@id" : "dfc-m:6Pack", + "@type" : [ "skos:Concept" ], + "skos:broader" : [ { "@id" : "dfc-m:QuantityUnit" } ], - "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-m:DFC_ProductGlossary_Measure" + "skos:inScheme" : [ { + "@id" : "dfc-m:Measures" } ], - "http://www.w3.org/2004/02/skos/core#notation" : [ { + "skos:notation" : [ { "@value" : "6p" } ], - "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { + "skos:prefLabel" : [ { "@language" : "en", "@value" : "6 pack" }, { @@ -1872,25 +1877,25 @@ "@value" : "pack de 6" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/ProductGlossary_Measure.rdf#Bag", - "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], - "http://www.w3.org/2004/02/skos/core#broader" : [ { + "@id" : "dfc-m:Bag", + "@type" : [ "skos:Concept" ], + "skos:broader" : [ { "@id" : "dfc-m:QuantityUnit" } ], - "http://www.w3.org/2004/02/skos/core#example" : [ { + "skos:example" : [ { "@language" : "fr", "@value" : "sac d'avoine" }, { "@language" : "en", "@value" : "bag of oat" } ], - "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-m:DFC_ProductGlossary_Measure" + "skos:inScheme" : [ { + "@id" : "dfc-m:Measures" } ], - "http://www.w3.org/2004/02/skos/core#notation" : [ { + "skos:notation" : [ { "@value" : "bg" } ], - "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { + "skos:prefLabel" : [ { "@language" : "en", "@value" : "bag" }, { @@ -1898,18 +1903,18 @@ "@value" : "sac" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/ProductGlossary_Measure.rdf#Basket", - "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], - "http://www.w3.org/2004/02/skos/core#broader" : [ { + "@id" : "dfc-m:Basket", + "@type" : [ "skos:Concept" ], + "skos:broader" : [ { "@id" : "dfc-m:QuantityUnit" } ], - "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-m:DFC_ProductGlossary_Measure" + "skos:inScheme" : [ { + "@id" : "dfc-m:Measures" } ], - "http://www.w3.org/2004/02/skos/core#notation" : [ { + "skos:notation" : [ { "@value" : "bk" } ], - "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { + "skos:prefLabel" : [ { "@language" : "en", "@value" : "basket" }, { @@ -1917,18 +1922,18 @@ "@value" : "panier" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/ProductGlossary_Measure.rdf#BeerCrate", - "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], - "http://www.w3.org/2004/02/skos/core#broader" : [ { + "@id" : "dfc-m:BeerCrate", + "@type" : [ "skos:Concept" ], + "skos:broader" : [ { "@id" : "dfc-m:QuantityUnit" } ], - "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-m:DFC_ProductGlossary_Measure" + "skos:inScheme" : [ { + "@id" : "dfc-m:Measures" } ], - "http://www.w3.org/2004/02/skos/core#notation" : [ { + "skos:notation" : [ { "@value" : "cb" } ], - "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { + "skos:prefLabel" : [ { "@language" : "en", "@value" : "beer crate" }, { @@ -1936,18 +1941,18 @@ "@value" : "casier à bière" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/ProductGlossary_Measure.rdf#Bottle", - "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], - "http://www.w3.org/2004/02/skos/core#broader" : [ { + "@id" : "dfc-m:Bottle", + "@type" : [ "skos:Concept" ], + "skos:broader" : [ { "@id" : "dfc-m:QuantityUnit" } ], - "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-m:DFC_ProductGlossary_Measure" + "skos:inScheme" : [ { + "@id" : "dfc-m:Measures" } ], - "http://www.w3.org/2004/02/skos/core#notation" : [ { + "skos:notation" : [ { "@value" : "bo" } ], - "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { + "skos:prefLabel" : [ { "@language" : "en", "@value" : "bottle" }, { @@ -1955,18 +1960,18 @@ "@value" : "bouteille" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/ProductGlossary_Measure.rdf#Box", - "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], - "http://www.w3.org/2004/02/skos/core#broader" : [ { + "@id" : "dfc-m:Box", + "@type" : [ "skos:Concept" ], + "skos:broader" : [ { "@id" : "dfc-m:QuantityUnit" } ], - "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-m:DFC_ProductGlossary_Measure" + "skos:inScheme" : [ { + "@id" : "dfc-m:Measures" } ], - "http://www.w3.org/2004/02/skos/core#notation" : [ { + "skos:notation" : [ { "@value" : "bx" } ], - "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { + "skos:prefLabel" : [ { "@language" : "en", "@value" : "box" }, { @@ -1974,18 +1979,18 @@ "@value" : "boîte" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/ProductGlossary_Measure.rdf#Bucket", - "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], - "http://www.w3.org/2004/02/skos/core#broader" : [ { + "@id" : "dfc-m:Bucket", + "@type" : [ "skos:Concept" ], + "skos:broader" : [ { "@id" : "dfc-m:QuantityUnit" } ], - "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-m:DFC_ProductGlossary_Measure" + "skos:inScheme" : [ { + "@id" : "dfc-m:Measures" } ], - "http://www.w3.org/2004/02/skos/core#notation" : [ { + "skos:notation" : [ { "@value" : "bj" } ], - "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { + "skos:prefLabel" : [ { "@language" : "en", "@value" : "bucket" }, { @@ -1993,25 +1998,25 @@ "@value" : "seau" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/ProductGlossary_Measure.rdf#Bunch", - "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], - "http://www.w3.org/2004/02/skos/core#broader" : [ { + "@id" : "dfc-m:Bunch", + "@type" : [ "skos:Concept" ], + "skos:broader" : [ { "@id" : "dfc-m:QuantityUnit" } ], - "http://www.w3.org/2004/02/skos/core#example" : [ { + "skos:example" : [ { "@language" : "en", "@value" : "bunch of parsley, bunch of carrots...." }, { "@language" : "fr", "@value" : "botte de persil, botte de carottes..." } ], - "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-m:DFC_ProductGlossary_Measure" + "skos:inScheme" : [ { + "@id" : "dfc-m:Measures" } ], - "http://www.w3.org/2004/02/skos/core#notation" : [ { + "skos:notation" : [ { "@value" : "bh" } ], - "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { + "skos:prefLabel" : [ { "@language" : "en", "@value" : "bunch" }, { @@ -2019,15 +2024,15 @@ "@value" : "botte" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/ProductGlossary_Measure.rdf#Bundle", - "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], - "http://www.w3.org/2004/02/skos/core#broader" : [ { + "@id" : "dfc-m:Bundle", + "@type" : [ "skos:Concept" ], + "skos:broader" : [ { "@id" : "dfc-m:QuantityUnit" } ], - "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-m:DFC_ProductGlossary_Measure" + "skos:inScheme" : [ { + "@id" : "dfc-m:Measures" } ], - "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { + "skos:prefLabel" : [ { "@language" : "en", "@value" : "bundle" }, { @@ -2035,18 +2040,18 @@ "@value" : "lot" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/ProductGlossary_Measure.rdf#Can", - "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], - "http://www.w3.org/2004/02/skos/core#broader" : [ { + "@id" : "dfc-m:Can", + "@type" : [ "skos:Concept" ], + "skos:broader" : [ { "@id" : "dfc-m:QuantityUnit" } ], - "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-m:DFC_ProductGlossary_Measure" + "skos:inScheme" : [ { + "@id" : "dfc-m:Measures" } ], - "http://www.w3.org/2004/02/skos/core#notation" : [ { + "skos:notation" : [ { "@value" : "cx" } ], - "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { + "skos:prefLabel" : [ { "@language" : "en", "@value" : "can" }, { @@ -2054,18 +2059,18 @@ "@value" : "canette" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/ProductGlossary_Measure.rdf#Carton", - "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], - "http://www.w3.org/2004/02/skos/core#broader" : [ { + "@id" : "dfc-m:Carton", + "@type" : [ "skos:Concept" ], + "skos:broader" : [ { "@id" : "dfc-m:QuantityUnit" } ], - "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-m:DFC_ProductGlossary_Measure" + "skos:inScheme" : [ { + "@id" : "dfc-m:Measures" } ], - "http://www.w3.org/2004/02/skos/core#notation" : [ { + "skos:notation" : [ { "@value" : "ct" } ], - "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { + "skos:prefLabel" : [ { "@language" : "en", "@value" : "carton" }, { @@ -2073,18 +2078,18 @@ "@value" : "carton" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/ProductGlossary_Measure.rdf#Cask", - "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], - "http://www.w3.org/2004/02/skos/core#broader" : [ { + "@id" : "dfc-m:Cask", + "@type" : [ "skos:Concept" ], + "skos:broader" : [ { "@id" : "dfc-m:QuantityUnit" } ], - "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-m:DFC_ProductGlossary_Measure" + "skos:inScheme" : [ { + "@id" : "dfc-m:Measures" } ], - "http://www.w3.org/2004/02/skos/core#notation" : [ { + "skos:notation" : [ { "@value" : "ck" } ], - "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { + "skos:prefLabel" : [ { "@language" : "en", "@value" : "cask" }, { @@ -2092,22 +2097,22 @@ "@value" : "tonneau" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/ProductGlossary_Measure.rdf#Cup", - "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], - "http://www.w3.org/2004/02/skos/core#broader" : [ { + "@id" : "dfc-m:Cup", + "@type" : [ "skos:Concept" ], + "skos:broader" : [ { "@id" : "dfc-m:QuantityUnit" } ], - "http://www.w3.org/2004/02/skos/core#example" : [ { + "skos:example" : [ { "@language" : "en", "@value" : "1 handful = 0.5 cup" } ], - "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-m:DFC_ProductGlossary_Measure" + "skos:inScheme" : [ { + "@id" : "dfc-m:Measures" } ], - "http://www.w3.org/2004/02/skos/core#notation" : [ { + "skos:notation" : [ { "@value" : "cu" } ], - "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { + "skos:prefLabel" : [ { "@language" : "en", "@value" : "cup" }, { @@ -2115,25 +2120,25 @@ "@value" : "tasse" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/ProductGlossary_Measure.rdf#Dozen", - "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], - "http://www.w3.org/2004/02/skos/core#broader" : [ { + "@id" : "dfc-m:Dozen", + "@type" : [ "skos:Concept" ], + "skos:broader" : [ { "@id" : "dfc-m:QuantityUnit" } ], - "http://www.w3.org/2004/02/skos/core#example" : [ { + "skos:example" : [ { "@language" : "en", "@value" : "2 dozens of eggs" }, { "@language" : "fr", "@value" : "deux douzaines d'oeufs" } ], - "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-m:DFC_ProductGlossary_Measure" + "skos:inScheme" : [ { + "@id" : "dfc-m:Measures" } ], - "http://www.w3.org/2004/02/skos/core#notation" : [ { + "skos:notation" : [ { "@value" : "dzn" } ], - "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { + "skos:prefLabel" : [ { "@language" : "en", "@value" : "dozen" }, { @@ -2141,18 +2146,18 @@ "@value" : "douzaine" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/ProductGlossary_Measure.rdf#Drum", - "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], - "http://www.w3.org/2004/02/skos/core#broader" : [ { + "@id" : "dfc-m:Drum", + "@type" : [ "skos:Concept" ], + "skos:broader" : [ { "@id" : "dfc-m:QuantityUnit" } ], - "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-m:DFC_ProductGlossary_Measure" + "skos:inScheme" : [ { + "@id" : "dfc-m:Measures" } ], - "http://www.w3.org/2004/02/skos/core#notation" : [ { + "skos:notation" : [ { "@value" : "dr" } ], - "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { + "skos:prefLabel" : [ { "@language" : "en", "@value" : "drum" }, { @@ -2160,18 +2165,18 @@ "@value" : "baril" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/ProductGlossary_Measure.rdf#GrainBulk", - "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], - "http://www.w3.org/2004/02/skos/core#broader" : [ { + "@id" : "dfc-m:GrainBulk", + "@type" : [ "skos:Concept" ], + "skos:broader" : [ { "@id" : "dfc-m:QuantityUnit" } ], - "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-m:DFC_ProductGlossary_Measure" + "skos:inScheme" : [ { + "@id" : "dfc-m:Measures" } ], - "http://www.w3.org/2004/02/skos/core#notation" : [ { + "skos:notation" : [ { "@value" : "vr" } ], - "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { + "skos:prefLabel" : [ { "@language" : "en", "@value" : "grain bulk" }, { @@ -2179,18 +2184,18 @@ "@value" : "grain en vrac" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/ProductGlossary_Measure.rdf#HalfDozen", - "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], - "http://www.w3.org/2004/02/skos/core#broader" : [ { + "@id" : "dfc-m:HalfDozen", + "@type" : [ "skos:Concept" ], + "skos:broader" : [ { "@id" : "dfc-m:QuantityUnit" } ], - "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-m:DFC_ProductGlossary_Measure" + "skos:inScheme" : [ { + "@id" : "dfc-m:Measures" } ], - "http://www.w3.org/2004/02/skos/core#notation" : [ { + "skos:notation" : [ { "@value" : "hd" } ], - "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { + "skos:prefLabel" : [ { "@language" : "en", "@value" : "half dozen" }, { @@ -2198,25 +2203,25 @@ "@value" : "demi-douzaine" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/ProductGlossary_Measure.rdf#Jar", - "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], - "http://www.w3.org/2004/02/skos/core#broader" : [ { + "@id" : "dfc-m:Jar", + "@type" : [ "skos:Concept" ], + "skos:broader" : [ { "@id" : "dfc-m:QuantityUnit" } ], - "http://www.w3.org/2004/02/skos/core#example" : [ { + "skos:example" : [ { "@language" : "en", "@value" : "jar of jam" }, { "@language" : "fr", "@value" : "bocal de confiture" } ], - "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-m:DFC_ProductGlossary_Measure" + "skos:inScheme" : [ { + "@id" : "dfc-m:Measures" } ], - "http://www.w3.org/2004/02/skos/core#notation" : [ { + "skos:notation" : [ { "@value" : "jr" } ], - "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { + "skos:prefLabel" : [ { "@language" : "en", "@value" : "jar" }, { @@ -2224,18 +2229,18 @@ "@value" : "bocal" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/ProductGlossary_Measure.rdf#Keg", - "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], - "http://www.w3.org/2004/02/skos/core#broader" : [ { + "@id" : "dfc-m:Keg", + "@type" : [ "skos:Concept" ], + "skos:broader" : [ { "@id" : "dfc-m:QuantityUnit" } ], - "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-m:DFC_ProductGlossary_Measure" + "skos:inScheme" : [ { + "@id" : "dfc-m:Measures" } ], - "http://www.w3.org/2004/02/skos/core#notation" : [ { + "skos:notation" : [ { "@value" : "kg" } ], - "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { + "skos:prefLabel" : [ { "@language" : "en", "@value" : "keg" }, { @@ -2243,18 +2248,18 @@ "@value" : "fût" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/ProductGlossary_Measure.rdf#Kit", - "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], - "http://www.w3.org/2004/02/skos/core#broader" : [ { + "@id" : "dfc-m:Kit", + "@type" : [ "skos:Concept" ], + "skos:broader" : [ { "@id" : "dfc-m:QuantityUnit" } ], - "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-m:DFC_ProductGlossary_Measure" + "skos:inScheme" : [ { + "@id" : "dfc-m:Measures" } ], - "http://www.w3.org/2004/02/skos/core#notation" : [ { + "skos:notation" : [ { "@value" : "ki" } ], - "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { + "skos:prefLabel" : [ { "@language" : "en", "@value" : "kit" }, { @@ -2262,18 +2267,18 @@ "@value" : "kit" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/ProductGlossary_Measure.rdf#LiquidBulk", - "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], - "http://www.w3.org/2004/02/skos/core#broader" : [ { + "@id" : "dfc-m:LiquidBulk", + "@type" : [ "skos:Concept" ], + "skos:broader" : [ { "@id" : "dfc-m:QuantityUnit" } ], - "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-m:DFC_ProductGlossary_Measure" + "skos:inScheme" : [ { + "@id" : "dfc-m:Measures" } ], - "http://www.w3.org/2004/02/skos/core#notation" : [ { + "skos:notation" : [ { "@value" : "vl" } ], - "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { + "skos:prefLabel" : [ { "@language" : "en", "@value" : "liquid bulk" }, { @@ -2281,18 +2286,18 @@ "@value" : "liquide en vrac" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/ProductGlossary_Measure.rdf#Net", - "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], - "http://www.w3.org/2004/02/skos/core#broader" : [ { + "@id" : "dfc-m:Net", + "@type" : [ "skos:Concept" ], + "skos:broader" : [ { "@id" : "dfc-m:QuantityUnit" } ], - "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-m:DFC_ProductGlossary_Measure" + "skos:inScheme" : [ { + "@id" : "dfc-m:Measures" } ], - "http://www.w3.org/2004/02/skos/core#notation" : [ { + "skos:notation" : [ { "@value" : "nt" } ], - "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { + "skos:prefLabel" : [ { "@language" : "en", "@value" : "net" }, { @@ -2300,18 +2305,18 @@ "@value" : "filet" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/ProductGlossary_Measure.rdf#NoduleBulk", - "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], - "http://www.w3.org/2004/02/skos/core#broader" : [ { + "@id" : "dfc-m:NoduleBulk", + "@type" : [ "skos:Concept" ], + "skos:broader" : [ { "@id" : "dfc-m:QuantityUnit" } ], - "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-m:DFC_ProductGlossary_Measure" + "skos:inScheme" : [ { + "@id" : "dfc-m:Measures" } ], - "http://www.w3.org/2004/02/skos/core#notation" : [ { + "skos:notation" : [ { "@value" : "vo" } ], - "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { + "skos:prefLabel" : [ { "@language" : "en", "@value" : "nodule bulk" }, { @@ -2319,18 +2324,18 @@ "@value" : "nodule en vrac" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/ProductGlossary_Measure.rdf#Packet", - "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], - "http://www.w3.org/2004/02/skos/core#broader" : [ { + "@id" : "dfc-m:Packet", + "@type" : [ "skos:Concept" ], + "skos:broader" : [ { "@id" : "dfc-m:QuantityUnit" } ], - "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-m:DFC_ProductGlossary_Measure" + "skos:inScheme" : [ { + "@id" : "dfc-m:Measures" } ], - "http://www.w3.org/2004/02/skos/core#notation" : [ { + "skos:notation" : [ { "@value" : "pa" } ], - "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { + "skos:prefLabel" : [ { "@language" : "en", "@value" : "packet" }, { @@ -2338,18 +2343,18 @@ "@value" : "sachet" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/ProductGlossary_Measure.rdf#Pair", - "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], - "http://www.w3.org/2004/02/skos/core#broader" : [ { + "@id" : "dfc-m:Pair", + "@type" : [ "skos:Concept" ], + "skos:broader" : [ { "@id" : "dfc-m:QuantityUnit" } ], - "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-m:DFC_ProductGlossary_Measure" + "skos:inScheme" : [ { + "@id" : "dfc-m:Measures" } ], - "http://www.w3.org/2004/02/skos/core#notation" : [ { + "skos:notation" : [ { "@value" : "pr" } ], - "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { + "skos:prefLabel" : [ { "@language" : "en", "@value" : "pair" }, { @@ -2357,18 +2362,18 @@ "@value" : "paire" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/ProductGlossary_Measure.rdf#Pallet", - "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], - "http://www.w3.org/2004/02/skos/core#broader" : [ { + "@id" : "dfc-m:Pallet", + "@type" : [ "skos:Concept" ], + "skos:broader" : [ { "@id" : "dfc-m:QuantityUnit" } ], - "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-m:DFC_ProductGlossary_Measure" + "skos:inScheme" : [ { + "@id" : "dfc-m:Measures" } ], - "http://www.w3.org/2004/02/skos/core#notation" : [ { + "skos:notation" : [ { "@value" : "px" } ], - "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { + "skos:prefLabel" : [ { "@language" : "en", "@value" : "pallet" }, { @@ -2376,25 +2381,25 @@ "@value" : "palette" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/ProductGlossary_Measure.rdf#Pot", - "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], - "http://www.w3.org/2004/02/skos/core#broader" : [ { + "@id" : "dfc-m:Pot", + "@type" : [ "skos:Concept" ], + "skos:broader" : [ { "@id" : "dfc-m:QuantityUnit" } ], - "http://www.w3.org/2004/02/skos/core#example" : [ { + "skos:example" : [ { "@language" : "en", "@value" : "a flower pot" }, { "@language" : "fr", "@value" : "un pot de fleur" } ], - "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-m:DFC_ProductGlossary_Measure" + "skos:inScheme" : [ { + "@id" : "dfc-m:Measures" } ], - "http://www.w3.org/2004/02/skos/core#notation" : [ { + "skos:notation" : [ { "@value" : "pt" } ], - "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { + "skos:prefLabel" : [ { "@language" : "fr", "@value" : "pot" }, { @@ -2402,18 +2407,18 @@ "@value" : "pot" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/ProductGlossary_Measure.rdf#Pouch", - "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], - "http://www.w3.org/2004/02/skos/core#broader" : [ { + "@id" : "dfc-m:Pouch", + "@type" : [ "skos:Concept" ], + "skos:broader" : [ { "@id" : "dfc-m:QuantityUnit" } ], - "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-m:DFC_ProductGlossary_Measure" + "skos:inScheme" : [ { + "@id" : "dfc-m:Measures" } ], - "http://www.w3.org/2004/02/skos/core#notation" : [ { + "skos:notation" : [ { "@value" : "po" } ], - "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { + "skos:prefLabel" : [ { "@language" : "en", "@value" : "pouch" }, { @@ -2421,18 +2426,18 @@ "@value" : "poche" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/ProductGlossary_Measure.rdf#PowderBulk", - "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], - "http://www.w3.org/2004/02/skos/core#broader" : [ { + "@id" : "dfc-m:PowderBulk", + "@type" : [ "skos:Concept" ], + "skos:broader" : [ { "@id" : "dfc-m:QuantityUnit" } ], - "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-m:DFC_ProductGlossary_Measure" + "skos:inScheme" : [ { + "@id" : "dfc-m:Measures" } ], - "http://www.w3.org/2004/02/skos/core#notation" : [ { + "skos:notation" : [ { "@value" : "vy" } ], - "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { + "skos:prefLabel" : [ { "@language" : "en", "@value" : "powder bulk" }, { @@ -2440,18 +2445,18 @@ "@value" : "poudre en vrac" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/ProductGlossary_Measure.rdf#Punnet", - "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], - "http://www.w3.org/2004/02/skos/core#broader" : [ { + "@id" : "dfc-m:Punnet", + "@type" : [ "skos:Concept" ], + "skos:broader" : [ { "@id" : "dfc-m:QuantityUnit" } ], - "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-m:DFC_ProductGlossary_Measure" + "skos:inScheme" : [ { + "@id" : "dfc-m:Measures" } ], - "http://www.w3.org/2004/02/skos/core#notation" : [ { + "skos:notation" : [ { "@value" : "pj" } ], - "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { + "skos:prefLabel" : [ { "@language" : "en", "@value" : "punnet" }, { @@ -2459,18 +2464,18 @@ "@value" : "barquette" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/ProductGlossary_Measure.rdf#Roll", - "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], - "http://www.w3.org/2004/02/skos/core#broader" : [ { + "@id" : "dfc-m:Roll", + "@type" : [ "skos:Concept" ], + "skos:broader" : [ { "@id" : "dfc-m:QuantityUnit" } ], - "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-m:DFC_ProductGlossary_Measure" + "skos:inScheme" : [ { + "@id" : "dfc-m:Measures" } ], - "http://www.w3.org/2004/02/skos/core#notation" : [ { + "skos:notation" : [ { "@value" : "ro" } ], - "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { + "skos:prefLabel" : [ { "@language" : "en", "@value" : "roll" }, { @@ -2478,18 +2483,18 @@ "@value" : "rouleau" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/ProductGlossary_Measure.rdf#Tablet", - "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], - "http://www.w3.org/2004/02/skos/core#broader" : [ { + "@id" : "dfc-m:Tablet", + "@type" : [ "skos:Concept" ], + "skos:broader" : [ { "@id" : "dfc-m:QuantityUnit" } ], - "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-m:DFC_ProductGlossary_Measure" + "skos:inScheme" : [ { + "@id" : "dfc-m:Measures" } ], - "http://www.w3.org/2004/02/skos/core#notation" : [ { + "skos:notation" : [ { "@value" : "t1" } ], - "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { + "skos:prefLabel" : [ { "@language" : "en", "@value" : "tablet" }, { @@ -2497,18 +2502,18 @@ "@value" : "tablette" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/ProductGlossary_Measure.rdf#Tin", - "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], - "http://www.w3.org/2004/02/skos/core#broader" : [ { + "@id" : "dfc-m:Tin", + "@type" : [ "skos:Concept" ], + "skos:broader" : [ { "@id" : "dfc-m:QuantityUnit" } ], - "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-m:DFC_ProductGlossary_Measure" + "skos:inScheme" : [ { + "@id" : "dfc-m:Measures" } ], - "http://www.w3.org/2004/02/skos/core#notation" : [ { + "skos:notation" : [ { "@value" : "tn" } ], - "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { + "skos:prefLabel" : [ { "@language" : "en", "@value" : "tin" }, { @@ -2516,18 +2521,18 @@ "@value" : "boîte de conserve" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/ProductGlossary_Measure.rdf#Tray", - "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], - "http://www.w3.org/2004/02/skos/core#broader" : [ { + "@id" : "dfc-m:Tray", + "@type" : [ "skos:Concept" ], + "skos:broader" : [ { "@id" : "dfc-m:QuantityUnit" } ], - "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-m:DFC_ProductGlossary_Measure" + "skos:inScheme" : [ { + "@id" : "dfc-m:Measures" } ], - "http://www.w3.org/2004/02/skos/core#notation" : [ { + "skos:notation" : [ { "@value" : "pu" } ], - "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { + "skos:prefLabel" : [ { "@language" : "en", "@value" : "tray" }, { @@ -2535,25 +2540,25 @@ "@value" : "plateau" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/ProductGlossary_Measure.rdf#Tub", - "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], - "http://www.w3.org/2004/02/skos/core#broader" : [ { + "@id" : "dfc-m:Tub", + "@type" : [ "skos:Concept" ], + "skos:broader" : [ { "@id" : "dfc-m:QuantityUnit" } ], - "http://www.w3.org/2004/02/skos/core#example" : [ { + "skos:example" : [ { "@language" : "en", "@value" : "tub of ice cream" }, { "@language" : "fr", "@value" : "bac de crème glacée" } ], - "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-m:DFC_ProductGlossary_Measure" + "skos:inScheme" : [ { + "@id" : "dfc-m:Measures" } ], - "http://www.w3.org/2004/02/skos/core#notation" : [ { + "skos:notation" : [ { "@value" : "tb" } ], - "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { + "skos:prefLabel" : [ { "@language" : "en", "@value" : "tub" }, { @@ -2561,31 +2566,30 @@ "@value" : "bac" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/ProductGlossary_Measure.rdf#Tube", - "@type" : [ "http://www.w3.org/2004/02/skos/core#Concept" ], - "http://www.w3.org/2004/02/skos/core#broader" : [ { + "@id" : "dfc-m:Tube", + "@type" : [ "skos:Concept" ], + "skos:broader" : [ { "@id" : "dfc-m:QuantityUnit" } ], - "http://www.w3.org/2004/02/skos/core#example" : [ { + "skos:example" : [ { "@language" : "en", "@value" : "tube of toothpaste" }, { "@language" : "fr", "@value" : "un tube de dentifrice" } ], - "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "dfc-m:DFC_ProductGlossary_Measure" + "skos:inScheme" : [ { + "@id" : "dfc-m:Measures" } ], - "http://www.w3.org/2004/02/skos/core#notation" : [ { + "skos:notation" : [ { "@value" : "td" } ], - "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { + "skos:prefLabel" : [ { "@language" : "en", "@value" : "tube" }, { "@language" : "fr", "@value" : "tube" } ] - } ], - "@id" : "http://static.datafoodconsortium.org/data/ProductGlossary_Measure.rdf" -} ] \ No newline at end of file + } ] +} \ No newline at end of file diff --git a/engines/dfc_provider/vendor/productTypes.json b/engines/dfc_provider/vendor/productTypes.json index 0505759942..e423ba3244 100644 --- a/engines/dfc_provider/vendor/productTypes.json +++ b/engines/dfc_provider/vendor/productTypes.json @@ -1,6 +1,12 @@ [ { "@graph" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf", + "@id" : "http://www.w3.org/2004/02/skos/core#Concept", + "@type" : [ "http://www.w3.org/2002/07/owl#Class" ] + }, { + "@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", "@type" : [ "http://www.w3.org/2002/07/owl#Ontology" ], "http://purl.org/dc/terms/description" : [ { "@language" : "fr", @@ -20,45 +26,45 @@ "@id" : "http://www.w3.org/2004/02/skos/core#ConceptScheme" } ], "http://www.w3.org/2004/02/skos/core#hasTopConcept" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#bakery" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#bakery" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#dairy-product" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#dairy-product" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#drink" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#drink" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#frozen" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#frozen" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#fruit" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#fruit" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#inedible" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#inedible" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#local-grocery-store" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#local-grocery-store" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#meat-product" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#meat-product" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#vegetable" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#vegetable" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#alcoholic-beverage", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#drink" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#drink" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#aperitif" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#aperitif" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#beer" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#beer" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#cider" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#cider" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#digestive" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#digestive" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#wine" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#wine" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -68,15 +74,15 @@ "@value" : "boisson alcoolisée" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#almond", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#nut" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#nut" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -86,15 +92,15 @@ "@value" : "amande" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#aperitif", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#alcoholic-beverage" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#alcoholic-beverage" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -104,15 +110,15 @@ "@value" : "apéritif" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#apples", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#fruit" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#fruit" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -122,15 +128,15 @@ "@value" : "pomme" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#apricot", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#fruit" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#fruit" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -140,15 +146,15 @@ "@value" : "apricot" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#artichoke", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#vegetable" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -158,15 +164,15 @@ "@value" : "artichoke" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#asparagus", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#vegetable" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -176,17 +182,17 @@ "@value" : "asperges" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#bakery", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#bread" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#bread" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#viennoiserie-" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#viennoiserie-" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -196,18 +202,18 @@ "@value" : "boulangerie" } ], "http://www.w3.org/2004/02/skos/core#topConceptOf" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#basil", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#aromatic" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#aromatic" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -217,15 +223,15 @@ "@value" : "basilic" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#bean", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#vegetable" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -235,15 +241,15 @@ "@value" : "haricot" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#beans", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#dried-vegetable" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#dried-vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -253,20 +259,20 @@ "@value" : "haricots" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#beef", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#meat-product" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#meat-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#grilling-meat" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#grilling-meat" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#simmering-meat" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#simmering-meat" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -276,15 +282,15 @@ "@value" : "viande bovine" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#beer", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#alcoholic-beverage" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#alcoholic-beverage" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -294,15 +300,15 @@ "@value" : "bière" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#beetroot", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#vegetable" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -312,28 +318,28 @@ "@value" : "betterave rouge" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#berry", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#fruit" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#fruit" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#blackberry" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#blackberry" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#blackcurrant" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#blackcurrant" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#blueberry" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#blueberry" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#currant" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#currant" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#gooseberry" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#gooseberry" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#raspberry" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#raspberry" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -343,15 +349,15 @@ "@value" : "petit fruit" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#biscuit", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#sweet-groceries" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#sweet-groceries" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -361,15 +367,15 @@ "@value" : "biscuit" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#blackberry", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#berry" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#berry" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -379,15 +385,15 @@ "@value" : "mûre" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#blackcurrant", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#berry" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#berry" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -397,15 +403,15 @@ "@value" : "cassis" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#blueberry", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#berry" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#berry" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -415,15 +421,15 @@ "@value" : "myrtille" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#bluefoot-mushroom", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#mushroom" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#mushroom" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -433,15 +439,15 @@ "@value" : "bluefoot mushroom" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#bottled-fruit", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#processed-fruit" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#processed-fruit" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -451,15 +457,15 @@ "@value" : "fruit en bocal" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#bottled-vegetable", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#processed-vegetable" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#processed-vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -469,15 +475,15 @@ "@value" : "légume en bocal" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#bread", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#bakery" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#bakery" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -487,15 +493,15 @@ "@value" : "pain" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#broccoli-cabbage", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#cabbage" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#cabbage" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -505,15 +511,15 @@ "@value" : "chou brocoli" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#brussels-sprouts", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#cabbage" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#cabbage" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -523,15 +529,15 @@ "@value" : "choux de bruxelles" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#butter", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#cow-dairy-product" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#cow-dairy-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -541,15 +547,15 @@ "@value" : "butter" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#butternut", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#squash" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#squash" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -559,38 +565,38 @@ "@value" : "butternut" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#cabbage", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#vegetable" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#broccoli-cabbage" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#broccoli-cabbage" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#brussels-sprouts" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#brussels-sprouts" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#cauliflower" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#cauliflower" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#chinese-cabbage" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#chinese-cabbage" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#kale" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#kale" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#kale-cabbage" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#kale-cabbage" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#kohlrabi" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#kohlrabi" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#red-cabbage" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#red-cabbage" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#romanesco" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#romanesco" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#savoy-cabbage" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#savoy-cabbage" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#smooth-cabbage" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#smooth-cabbage" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -600,15 +606,15 @@ "@value" : "chou" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#canned-fruit", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#processed-fruit" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#processed-fruit" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -618,15 +624,15 @@ "@value" : "fruit en conserve" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#canned-vegetable", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#processed-vegetable" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#processed-vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -636,15 +642,15 @@ "@value" : "légume en conserve" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#carrot", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#vegetable" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -654,15 +660,15 @@ "@value" : "carrot" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#cauliflower", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#cabbage" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#cabbage" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -672,15 +678,15 @@ "@value" : "chou-fleur" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#celeriac", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#vegetable" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -690,15 +696,15 @@ "@value" : "céleri-rave" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#celery-branch", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#vegetable" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -708,33 +714,15 @@ "@value" : "céleri branche" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#cereal", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#savory-groceries" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#mushroom" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" - } ], - "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { - "@language" : "en", - "@value" : "cereal" - }, { - "@language" : "fr", - "@value" : "céréale" - } ] - }, { - "@id" : "http://static.datafoodconsortium.org/data/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#mushroom" - } ], - "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -744,15 +732,15 @@ "@value" : "chanterelle mushroom" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#chard", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#vegetable" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -762,15 +750,15 @@ "@value" : "chard" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#cherry", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#fruit" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#fruit" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -780,15 +768,15 @@ "@value" : "cherry" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#cherry-tomato", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#tomato" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#tomato" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -798,15 +786,15 @@ "@value" : "tomate cerise" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#chervil", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#aromatic" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#aromatic" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -816,15 +804,15 @@ "@value" : "chervil" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#chestnut", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#nut" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#nut" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -834,15 +822,15 @@ "@value" : "marron" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#chicken", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#poultry" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#poultry" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -852,15 +840,15 @@ "@value" : "poulet" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#chicory", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#salad" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#salad" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -870,15 +858,15 @@ "@value" : "chicorée" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#chilli-pepper", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#aromatic" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#aromatic" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -888,15 +876,15 @@ "@value" : "piment" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#chinese-cabbage", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#cabbage" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#cabbage" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -906,15 +894,15 @@ "@value" : "chou chinois" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#chive", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#aromatic" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#aromatic" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -924,15 +912,15 @@ "@value" : "ciboulette" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#cider", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#alcoholic-beverage" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#alcoholic-beverage" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -942,15 +930,15 @@ "@value" : "cidre" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#clementine", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#fruit" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#fruit" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -960,15 +948,15 @@ "@value" : "clémentine" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#cluster-tomato", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#tomato" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#tomato" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -978,15 +966,15 @@ "@value" : "tomate en grappe" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#confectionery", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#sweet-groceries" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#sweet-groceries" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -996,15 +984,15 @@ "@value" : "confiserie" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#cooked-meat", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#pork" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#pork" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1014,15 +1002,15 @@ "@value" : "viande cuite" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#coriander", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#aromatic" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#aromatic" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1032,15 +1020,15 @@ "@value" : "coriandre" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#corn-salad", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#salad" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#salad" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1050,15 +1038,15 @@ "@value" : "mâche" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#cosmetic", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#inedible" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#inedible" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1068,15 +1056,15 @@ "@value" : "cosmétique" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#coulemelle-mushroom", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#mushroom" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#mushroom" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -1086,15 +1074,15 @@ "@value" : "parasol mushroom" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#courgette", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#vegetable" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1104,40 +1092,40 @@ "@value" : "courgette" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#cow-dairy-product", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#dairy-product" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#dairy-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#butter" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#butter" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#cream-cheese" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#cream-cheese" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#dairy-dessert" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#dairy-dessert" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#flavored-yogurt" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#flavored-yogurt" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#fresh-cheese" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#fresh-cheese" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#fresh-cream" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#fresh-cream" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#mature-cheese" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#mature-cheese" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#milk" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#milk" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#natural-yogurt" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#natural-yogurt" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#sweet-yogurt" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#sweet-yogurt" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#yogurt-on-a-bed-of-fruit" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#yogurt-on-a-bed-of-fruit" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#yogurt-with-fruits" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#yogurt-with-fruits" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1147,15 +1135,15 @@ "@value" : "produit laitier de vache" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#cream-cheese", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#cow-dairy-product" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#cow-dairy-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1165,15 +1153,15 @@ "@value" : "fromage blanc" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#crepe-and-galette", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#savory-groceries" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#savory-groceries" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1183,15 +1171,15 @@ "@value" : "crêpe et galette" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#cress", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#salad" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#salad" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1201,15 +1189,15 @@ "@value" : "cresson" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#cucumber", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#vegetable" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -1219,15 +1207,15 @@ "@value" : "cucumber" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#currant", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#berry" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#berry" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1237,15 +1225,15 @@ "@value" : "groseille" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#dairy-dessert", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#cow-dairy-product" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#cow-dairy-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1255,21 +1243,21 @@ "@value" : "dessert lacté" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#dairy-product", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#cow-dairy-product" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#cow-dairy-product" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#goat-dairy-product" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#goat-dairy-product" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#other-dairy-product" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#other-dairy-product" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#sheep-dairy-product" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#sheep-dairy-product" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1279,18 +1267,18 @@ "@value" : "produit laitier" } ], "http://www.w3.org/2004/02/skos/core#topConceptOf" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#dandelion", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#salad" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#salad" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1300,15 +1288,15 @@ "@value" : "pissenlit" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#deaths-trumpet", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#mushroom" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#mushroom" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1318,15 +1306,15 @@ "@value" : "trompette de la mort" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#delicatessen", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#pork" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#pork" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -1336,15 +1324,15 @@ "@value" : "delicatessen" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#digestive", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#alcoholic-beverage" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#alcoholic-beverage" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -1354,15 +1342,15 @@ "@value" : "digestive" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#dill", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#aromatic" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#aromatic" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -1372,15 +1360,15 @@ "@value" : "dill" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#dried-fruit", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#processed-fruit" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#processed-fruit" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1390,24 +1378,24 @@ "@value" : "fruit sec" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#dried-vegetable", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#vegetable" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#beans" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#beans" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#lentils" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#lentils" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#peas" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#peas" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#quinoa" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#quinoa" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1417,17 +1405,64 @@ "@value" : "légume sec" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#drink", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" + } ], + "http://www.w3.org/2004/02/skos/core#inScheme" : [ { + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + } ], + "http://www.w3.org/2004/02/skos/core#narrower" : [ { + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#flour" + }, { + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#dried_herb" + }, { + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#flake" + }, { + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#grain" + }, { + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#seed" + } ], + "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { + "@language" : "en", + "@value" : "dried goods" + }, { + "@language" : "fr", + "@value" : "produits sec" + } ] + }, { + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" + } ], + "http://www.w3.org/2004/02/skos/core#inScheme" : [ { + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + } ], + "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { + "@language" : "en", + "@value" : "dried herb" + }, { + "@language" : "fr", + "@value" : "aromate sec" + } ] + }, { + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#alcoholic-beverage" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#alcoholic-beverage" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#soft-drink" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#soft-drink" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -1437,18 +1472,18 @@ "@value" : "drink" } ], "http://www.w3.org/2004/02/skos/core#topConceptOf" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#duck", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#poultry" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#poultry" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -1458,15 +1493,15 @@ "@value" : "duck" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#egg", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#meat-product" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#meat-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1476,15 +1511,15 @@ "@value" : "œuf" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#eggplant", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#vegetable" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -1494,15 +1529,15 @@ "@value" : "eggplant" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#endive", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#salad" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#salad" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1512,15 +1547,15 @@ "@value" : "endive" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#fennel", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#vegetable" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1530,15 +1565,15 @@ "@value" : "fenouil" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#festive-poultry", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#poultry" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#poultry" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1548,15 +1583,15 @@ "@value" : "volaille festive" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#fifth-range-vegetable", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#vegetable" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1566,15 +1601,15 @@ "@value" : "légume de cinquième gamme" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#fig", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#fruit" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#fruit" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1584,15 +1619,15 @@ "@value" : "figue" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#fish", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#fishery-product" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#fishery-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1602,22 +1637,22 @@ "@value" : "poisson" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#fishery-product", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#meat-product" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#meat-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#fish" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#fish" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#seashell" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#seashell" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#shellfish" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#shellfish" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1627,15 +1662,33 @@ "@value" : "produit de la pêche" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#flavored-yogurt", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#cow-dairy-product" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#dried_goods" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + } ], + "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { + "@language" : "en", + "@value" : "flake" + }, { + "@language" : "fr", + "@value" : "flocon" + } ] + }, { + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" + } ], + "http://www.w3.org/2004/02/skos/core#inScheme" : [ { + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1645,15 +1698,15 @@ "@value" : "yaourt aromatisé" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#flour", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#savory-groceries" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#dried_goods" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -1663,15 +1716,15 @@ "@value" : "flour" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#flower", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#inedible" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#inedible" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -1681,15 +1734,15 @@ "@value" : "flower" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#fourth-range-vegetable", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#vegetable" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1699,15 +1752,15 @@ "@value" : "légume de quatrième gamme" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#fresh-cheese", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#cow-dairy-product" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#cow-dairy-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1717,15 +1770,15 @@ "@value" : "fromage frais" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#fresh-cream", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#cow-dairy-product" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#cow-dairy-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -1735,15 +1788,15 @@ "@value" : "fresh cream" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#fresh-meat", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#pork" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#pork" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1753,21 +1806,21 @@ "@value" : "viande fraîche" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#frozen", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#frozen-fruit" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#frozen-fruit" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#frozen-meal" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#frozen-meal" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#frozen-meat" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#frozen-meat" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#frozen-vegetable" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#frozen-vegetable" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1777,18 +1830,18 @@ "@value" : "surgelé" } ], "http://www.w3.org/2004/02/skos/core#topConceptOf" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#frozen-fruit", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#frozen" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#frozen" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1798,15 +1851,15 @@ "@value" : "fruit surgelé" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#frozen-meal", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#frozen" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#frozen" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1816,15 +1869,15 @@ "@value" : "plat surgelé" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#frozen-meat", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#frozen" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#frozen" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1834,15 +1887,15 @@ "@value" : "viande surgelée" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#frozen-vegetable", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#frozen" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#frozen" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1852,53 +1905,53 @@ "@value" : "légume surgelé" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#fruit", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#apples" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#apples" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#apricot" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#apricot" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#berry" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#berry" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#cherry" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#cherry" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#clementine" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#clementine" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#fig" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#fig" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#grape" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#grape" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#kiwi" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#kiwi" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#lemon" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#lemon" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#mandarin" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#mandarin" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#nectarine" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#nectarine" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#non-local-fruit" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#non-local-fruit" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#nut" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#nut" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#orange" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#orange" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#peach" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#peach" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#pear" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#pear" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#plum" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#plum" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#prune" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#prune" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#quince" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#quince" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#strawberry" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#strawberry" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1908,18 +1961,18 @@ "@value" : "fruits" } ], "http://www.w3.org/2004/02/skos/core#topConceptOf" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#fruit-in-compote", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#processed-fruit" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#processed-fruit" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -1929,15 +1982,15 @@ "@value" : "fruit in compote" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#fruit-juice", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#soft-drink" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#soft-drink" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -1947,15 +2000,15 @@ "@value" : "jus de fruits" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#garlic", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#vegetable" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -1965,15 +2018,15 @@ "@value" : "garlic" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#girolle-mushroom", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#mushroom" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#mushroom" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -1983,15 +2036,15 @@ "@value" : "girolle mushroom" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#goat-dairy-dessert", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#goat-dairy-product" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#goat-dairy-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -2001,34 +2054,34 @@ "@value" : "goat dairy dessert" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#goat-dairy-product", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#dairy-product" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#dairy-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#goat-dairy-dessert" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#goat-dairy-dessert" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#goat-flavored-yogurt" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#goat-flavored-yogurt" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#goat-fresh-cheese" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#goat-fresh-cheese" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#goat-mature-cheese" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#goat-mature-cheese" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#goat-milk" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#goat-milk" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#goat-natural-yogurt" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#goat-natural-yogurt" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#goat-sweet-yogurt" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#goat-sweet-yogurt" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#goat-yogurt-on-a-bed-of-fruit" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#goat-yogurt-on-a-bed-of-fruit" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#goat-yogurt-with-fruits" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#goat-yogurt-with-fruits" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2038,15 +2091,15 @@ "@value" : "produit laitier de chèvre" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#goat-flavored-yogurt", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#goat-dairy-product" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#goat-dairy-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2056,15 +2109,15 @@ "@value" : "yaourt de chèvre aromatisé" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#goat-fresh-cheese", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#goat-dairy-product" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#goat-dairy-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -2074,15 +2127,15 @@ "@value" : "goat fresh cheese" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#goat-mature-cheese", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#goat-dairy-product" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#goat-dairy-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -2092,15 +2145,15 @@ "@value" : "goat mature cheese" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#goat-milk", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#goat-dairy-product" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#goat-dairy-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2110,15 +2163,15 @@ "@value" : "lait de chèvre" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#goat-natural-yogurt", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#goat-dairy-product" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#goat-dairy-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2128,15 +2181,15 @@ "@value" : "yaourt nature de chèvre" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#goat-sweet-yogurt", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#goat-dairy-product" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#goat-dairy-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2146,15 +2199,15 @@ "@value" : "yaourt sucré de chèvre" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#goat-yogurt-on-a-bed-of-fruit", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#goat-dairy-product" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#goat-dairy-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2164,15 +2217,15 @@ "@value" : "yaourt de chèvre sur lit de fruits" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#goat-yogurt-with-fruits", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#goat-dairy-product" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#goat-dairy-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2182,15 +2235,15 @@ "@value" : "yaourt de chèvre aux fruits" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#goose", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#poultry" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#poultry" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2200,15 +2253,15 @@ "@value" : "oie" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#gooseberry", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#berry" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#berry" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2218,15 +2271,35 @@ "@value" : "groseille à maquereau" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#grape", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#fruit" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#savory-groceries" + }, { + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#dried_goods" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + } ], + "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { + "@language" : "fr", + "@value" : "céréale" + }, { + "@language" : "en", + "@value" : "grain" + } ] + }, { + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" + } ], + "http://www.w3.org/2004/02/skos/core#inScheme" : [ { + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2236,15 +2309,15 @@ "@value" : "raisin" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#green-garlic", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#vegetable" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -2254,15 +2327,15 @@ "@value" : "green garlic" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#grilling-meat", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#beef" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#beef" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2272,15 +2345,15 @@ "@value" : "viande à griller" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#guinea-fowl", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#poultry" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#poultry" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2290,15 +2363,15 @@ "@value" : "pintade" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#hazelnut", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#nut" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#nut" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2308,42 +2381,42 @@ "@value" : "noisette" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#herb", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#vegetable" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#basil" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#basil" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#chervil" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#chervil" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#chilli-pepper" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#chilli-pepper" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#chive" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#chive" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#coriander" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#coriander" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#dill" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#dill" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#laurel" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#laurel" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#mint" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#mint" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#parsley" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#parsley" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#rosemary" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#rosemary" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#sage" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#sage" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#tarragon" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#tarragon" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#thyme" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#thyme" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -2353,15 +2426,15 @@ "@value" : "herb" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#hierloom-squash", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#squash" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#squash" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2371,15 +2444,15 @@ "@value" : "variété ancienne de courge" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#hierloom-tomato", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#tomato" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#tomato" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2389,15 +2462,15 @@ "@value" : "tomate ancienne" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#honey", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#sweet-groceries" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#sweet-groceries" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2407,19 +2480,19 @@ "@value" : "miel" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#inedible", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#cosmetic" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#cosmetic" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#flower" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#flower" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#plant" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#plant" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2429,18 +2502,18 @@ "@value" : "non alimentaire" } ], "http://www.w3.org/2004/02/skos/core#topConceptOf" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#jam", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#sweet-groceries" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#sweet-groceries" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -2450,15 +2523,19 @@ "@value" : "jam" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#jerusalem-artichoke", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" } ], + "http://www.w3.org/2004/02/skos/core#altLabel" : [ { + "@language" : "en", + "@value" : "sunchoke" + } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#vegetable" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2468,15 +2545,15 @@ "@value" : "topinambour" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#kale", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#cabbage" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#cabbage" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -2486,15 +2563,15 @@ "@value" : "curly kale" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#kale-cabbage", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#cabbage" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#cabbage" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -2504,15 +2581,15 @@ "@value" : "kale" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#kiwi", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#fruit" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#fruit" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2522,15 +2599,15 @@ "@value" : "kiwi" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#kohlrabi", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#cabbage" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#cabbage" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -2540,15 +2617,15 @@ "@value" : "kohlrabi" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#lamb", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#meat-product" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#meat-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -2558,15 +2635,15 @@ "@value" : "lamb" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#laurel", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#aromatic" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#aromatic" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2576,15 +2653,15 @@ "@value" : "laurier" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#leek", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#vegetable" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2594,15 +2671,15 @@ "@value" : "poireau" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#lemon", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#fruit" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#fruit" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -2612,15 +2689,15 @@ "@value" : "lemon" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#lemonade", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#soft-drink" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#soft-drink" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2630,15 +2707,15 @@ "@value" : "limonade" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#lentils", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#dried-vegetable" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#dried-vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -2648,15 +2725,15 @@ "@value" : "lentils" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#lettuce", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#salad" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#salad" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -2666,23 +2743,23 @@ "@value" : "lettuce" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#local-grocery-store", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#processed-fruit" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#processed-fruit" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#processed-vegetable" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#processed-vegetable" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#ready-meal" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#ready-meal" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#savory-groceries" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#savory-groceries" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#sweet-groceries" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#sweet-groceries" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2692,18 +2769,18 @@ "@value" : "épicerie locale" } ], "http://www.w3.org/2004/02/skos/core#topConceptOf" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#mandarin", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#fruit" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#fruit" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2713,15 +2790,15 @@ "@value" : "mandarine" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#mature-cheese", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#cow-dairy-product" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#cow-dairy-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -2731,31 +2808,31 @@ "@value" : "mature cheese" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#meat-product", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#beef" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#beef" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#egg" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#egg" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#fishery-product" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#fishery-product" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#lamb" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#lamb" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#pork" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#pork" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#poultry" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#poultry" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#rabbit" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#rabbit" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#snails" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#snails" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#veal" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#veal" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2765,18 +2842,18 @@ "@value" : "produit carné" } ], "http://www.w3.org/2004/02/skos/core#topConceptOf" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#medlar", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#fruit" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#fruit" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2786,15 +2863,15 @@ "@value" : "nèfle" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#melon", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#vegetable" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2804,15 +2881,15 @@ "@value" : "melon" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#mesclun", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#salad" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#salad" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2822,15 +2899,15 @@ "@value" : "mesclun" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#milk", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#cow-dairy-product" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#cow-dairy-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -2840,15 +2917,15 @@ "@value" : "milk" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#milky-mushroom", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#mushroom" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#mushroom" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -2858,15 +2935,15 @@ "@value" : "milky mushroom" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#mint", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#aromatic" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#aromatic" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -2876,15 +2953,15 @@ "@value" : "mint" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#morel", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#mushroom" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#mushroom" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2894,15 +2971,15 @@ "@value" : "morille" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#mousseron", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#mushroom" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#mushroom" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2912,42 +2989,42 @@ "@value" : "mousseron" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#mushroom", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#vegetable" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#bluefoot-mushroom" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#bluefoot-mushroom" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#chanterelle-mushroom" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#chanterelle-mushroom" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#coulemelle-mushroom" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#coulemelle-mushroom" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#deaths-trumpet" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#deaths-trumpet" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#girolle-mushroom" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#girolle-mushroom" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#milky-mushroom" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#milky-mushroom" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#morel" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#morel" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#mousseron" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#mousseron" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#oyster-mushroom" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#oyster-mushroom" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#paris-mushroom" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#paris-mushroom" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#porcini" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#porcini" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#sheepfoot-mushroom" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#sheepfoot-mushroom" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#truffle" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#truffle" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -2957,15 +3034,15 @@ "@value" : "mushroom" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#natural-yogurt", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#cow-dairy-product" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#cow-dairy-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2975,15 +3052,15 @@ "@value" : "yaourt nature" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#nectarine", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#fruit" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#fruit" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -2993,15 +3070,15 @@ "@value" : "nectarine" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#non-local-fruit", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#fruit" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#fruit" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -3011,15 +3088,15 @@ "@value" : "non local fruit" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#non-local-vegetable", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#vegetable" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -3029,26 +3106,26 @@ "@value" : "non local vegetable" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#nut", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#fruit" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#fruit" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#almond" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#almond" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#chestnut" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#chestnut" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#hazelnut" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#hazelnut" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#medlar" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#medlar" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#walnut" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#walnut" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -3058,15 +3135,15 @@ "@value" : "nut" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#oil", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#savory-groceries" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#savory-groceries" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -3076,15 +3153,15 @@ "@value" : "oil" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#onion", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#vegetable" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -3094,15 +3171,15 @@ "@value" : "onion" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#orange", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#fruit" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#fruit" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -3112,15 +3189,15 @@ "@value" : "orange" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#other-cheese", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#other-dairy-product" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#other-dairy-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -3130,20 +3207,20 @@ "@value" : "other cheese" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#other-dairy-product", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#dairy-product" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#dairy-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#other-cheese" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#other-cheese" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#other-milk" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#other-milk" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -3153,15 +3230,15 @@ "@value" : "other dairy product" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#other-milk", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#other-dairy-product" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#other-dairy-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -3171,15 +3248,15 @@ "@value" : "other milk" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#oyster-mushroom", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#mushroom" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#mushroom" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -3189,15 +3266,15 @@ "@value" : "pleurote" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#paris-mushroom", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#mushroom" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#mushroom" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -3207,15 +3284,15 @@ "@value" : "champignon de Paris" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#parsley", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#aromatic" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#aromatic" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -3225,15 +3302,15 @@ "@value" : "persil" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#parsnip", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#vegetable" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -3243,15 +3320,15 @@ "@value" : "parsnip" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#pasta", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#savory-groceries" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#savory-groceries" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -3261,15 +3338,15 @@ "@value" : "pâtes" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#pastry", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#sweet-groceries" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#sweet-groceries" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -3279,15 +3356,15 @@ "@value" : "pâtisserie" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#pattypan-squash", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#squash" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#squash" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -3297,15 +3374,15 @@ "@value" : "pâtisson" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#peach", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#fruit" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#fruit" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -3315,15 +3392,15 @@ "@value" : "pêche" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#pear", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#fruit" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#fruit" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -3333,15 +3410,15 @@ "@value" : "poire" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#peas", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#dried-vegetable" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#dried-vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -3351,15 +3428,15 @@ "@value" : "pois" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#pepper", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#vegetable" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -3369,15 +3446,15 @@ "@value" : "poivron" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#pie-pastry", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#savory-groceries" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#savory-groceries" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -3387,15 +3464,15 @@ "@value" : "pâte à tarte" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#pigeon", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#poultry" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#poultry" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -3405,15 +3482,15 @@ "@value" : "pigeon" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#plant", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#inedible" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#inedible" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -3423,15 +3500,15 @@ "@value" : "plante" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#plum", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#fruit" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#fruit" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -3441,15 +3518,15 @@ "@value" : "prune" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#porcini", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#mushroom" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#mushroom" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -3459,24 +3536,24 @@ "@value" : "porcini" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#pork", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#meat-product" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#meat-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#cooked-meat" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#cooked-meat" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#delicatessen" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#delicatessen" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#fresh-meat" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#fresh-meat" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#salting" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#salting" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -3486,15 +3563,15 @@ "@value" : "pork" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#potato", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#vegetable" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -3504,32 +3581,32 @@ "@value" : "potato" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#poultry", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#meat-product" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#meat-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#chicken" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#chicken" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#duck" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#duck" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#festive-poultry" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#festive-poultry" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#goose" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#goose" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#guinea-fowl" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#guinea-fowl" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#pigeon" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#pigeon" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#quail" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#quail" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#turkey" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#turkey" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -3539,24 +3616,24 @@ "@value" : "volaille" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#processed-fruit", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#local-grocery-store" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#local-grocery-store" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#bottled-fruit" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#bottled-fruit" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#canned-fruit" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#canned-fruit" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#dried-fruit" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#dried-fruit" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#fruit-in-compote" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#fruit-in-compote" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -3566,22 +3643,22 @@ "@value" : "processed fruit" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#processed-vegetable", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#local-grocery-store" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#local-grocery-store" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#bottled-vegetable" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#bottled-vegetable" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#canned-vegetable" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#canned-vegetable" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#soup" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#soup" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -3591,15 +3668,15 @@ "@value" : "processed vegetable" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#prune", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#fruit" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#fruit" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -3609,15 +3686,15 @@ "@value" : "pruneau" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#pumpkin", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#squash" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#squash" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -3627,15 +3704,15 @@ "@value" : "pumpkin" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#quail", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#poultry" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#poultry" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -3645,15 +3722,15 @@ "@value" : "quail" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#quince", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#fruit" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#fruit" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -3663,15 +3740,15 @@ "@value" : "quince" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#quinoa", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#dried-vegetable" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#dried-vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -3681,15 +3758,15 @@ "@value" : "quinoa" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#rabbit", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#meat-product" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#meat-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -3699,15 +3776,15 @@ "@value" : "rabbit" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#radish", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#vegetable" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -3717,15 +3794,15 @@ "@value" : "radish" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#raspberry", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#berry" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#berry" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -3735,15 +3812,15 @@ "@value" : "raspberry" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#ready-meal", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#local-grocery-store" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#local-grocery-store" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -3753,15 +3830,15 @@ "@value" : "ready meal" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#red-cabbage", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#cabbage" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#cabbage" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -3771,15 +3848,15 @@ "@value" : "red cabbage" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#rhubarb", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#vegetable" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -3789,15 +3866,15 @@ "@value" : "rhubarbe" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#rice", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#savory-groceries" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#savory-groceries" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -3807,15 +3884,15 @@ "@value" : "riz" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#rocket", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#salad" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#salad" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -3825,15 +3902,15 @@ "@value" : "roquette" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#romanesco", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#cabbage" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#cabbage" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -3843,15 +3920,15 @@ "@value" : "romanesco cauliflower" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#rosemary", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#aromatic" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#aromatic" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -3861,15 +3938,15 @@ "@value" : "rosemary" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#round-tomato", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#tomato" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#tomato" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -3879,15 +3956,19 @@ "@value" : "tomate ronde" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#rutabaga", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#rutabaga", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], + "http://www.w3.org/2004/02/skos/core#altLabel" : [ { + "@language" : "en", + "@value" : "swede" + } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#vegetable" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -3897,15 +3978,15 @@ "@value" : "rutabaga" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#sage", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#aromatic" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#aromatic" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -3915,36 +3996,36 @@ "@value" : "sauge" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#salad", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#vegetable" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#chicory" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#chicory" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#chewed-up" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#chewed-up" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#cress" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#cress" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#dandelion" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#dandelion" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#endive" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#endive" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#lettuce" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#lettuce" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#mesclun" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#mesclun" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#rocket" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#rocket" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#salad-mix" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#salad-mix" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#spinach" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#spinach" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -3954,15 +4035,15 @@ "@value" : "salade" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#salad-mix", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#salad" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#salad" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -3972,15 +4053,15 @@ "@value" : "salad mix" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#salsify", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#vegetable" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -3990,15 +4071,15 @@ "@value" : "salsify" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#salt", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#savory-groceries" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#savory-groceries" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -4008,15 +4089,15 @@ "@value" : "sel" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#salting", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#pork" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#pork" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -4026,34 +4107,30 @@ "@value" : "salting" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#savory-groceries", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#local-grocery-store" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#local-grocery-store" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#cereal" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#crepe-and-galette" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#crepe-and-galette" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#oil" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#flour" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#pasta" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#oil" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#pie-pastry" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#pasta" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#rice" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#pie-pastry" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#salt" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#rice" - }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#salt" - }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#semolina" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#semolina" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -4063,15 +4140,15 @@ "@value" : "épicerie salée" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#savoy-cabbage", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#cabbage" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#cabbage" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -4081,15 +4158,15 @@ "@value" : "savoy cabbage" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#seashell", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#fishery-product" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#fishery-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -4099,15 +4176,40 @@ "@value" : "seashell" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#semolina", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#savory-groceries" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#dried_goods" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" + } ], + "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { + "@language" : "en", + "@value" : "seed" + }, { + "@language" : "fr", + "@value" : "graine" + } ] + }, { + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#semolina", + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { + "@id" : "http://www.w3.org/2004/02/skos/core#Concept" + } ], + "http://www.w3.org/2004/02/skos/core#altLabel" : [ { + "@language" : "en", + "@value" : "course meal" + }, { + "@language" : "en", + "@value" : "grist" + } ], + "http://www.w3.org/2004/02/skos/core#broader" : [ { + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#savory-groceries" + } ], + "http://www.w3.org/2004/02/skos/core#inScheme" : [ { + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -4117,15 +4219,15 @@ "@value" : "semoule" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#shallot", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#vegetable" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -4135,15 +4237,15 @@ "@value" : "échalote" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#sheep-dairy-dessert", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#sheep-dairy-product" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#sheep-dairy-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -4153,34 +4255,34 @@ "@value" : "sheep dairy dessert" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#sheep-dairy-product", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#dairy-product" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#dairy-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#sheep-dairy-dessert" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#sheep-dairy-dessert" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#sheep-flavored-yogurt" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#sheep-flavored-yogurt" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#sheep-fresh-cheese" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#sheep-fresh-cheese" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#sheep-mature-cheese" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#sheep-mature-cheese" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#sheep-milk" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#sheep-milk" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#sheep-natural-yogurt" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#sheep-natural-yogurt" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#sheep-sweet-yogurt" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#sheep-sweet-yogurt" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#sheep-yogurt-on-a-bed-of-fruit" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#sheep-yogurt-on-a-bed-of-fruit" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#sheep-yogurt-with-fruits" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#sheep-yogurt-with-fruits" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -4190,15 +4292,15 @@ "@value" : "sheep dairy product" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#sheep-flavored-yogurt", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#sheep-dairy-product" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#sheep-dairy-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -4208,15 +4310,15 @@ "@value" : "yaourt de brebis aromatisé" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#sheep-fresh-cheese", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#sheep-dairy-product" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#sheep-dairy-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -4226,15 +4328,15 @@ "@value" : "sheep fresh cheese" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#sheep-mature-cheese", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#sheep-dairy-product" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#sheep-dairy-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -4244,15 +4346,15 @@ "@value" : "sheep mature cheese" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#sheep-milk", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#sheep-dairy-product" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#sheep-dairy-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -4262,15 +4364,15 @@ "@value" : "sheep milk" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#sheep-natural-yogurt", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#sheep-dairy-product" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#sheep-dairy-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -4280,15 +4382,15 @@ "@value" : "yaourt de brebis nature" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#sheep-sweet-yogurt", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#sheep-dairy-product" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#sheep-dairy-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -4298,15 +4400,15 @@ "@value" : "yaourt sucré de brebis" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#sheep-yogurt-on-a-bed-of-fruit", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#sheep-dairy-product" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#sheep-dairy-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -4316,15 +4418,15 @@ "@value" : "yaourt de brebis sur lit de fruits" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#sheep-yogurt-with-fruits", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#sheep-dairy-product" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#sheep-dairy-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -4334,15 +4436,15 @@ "@value" : "yaourt de brebis aux fruits" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#sheepfoot-mushroom", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#mushroom" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#mushroom" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -4352,15 +4454,15 @@ "@value" : "sheepfoot mushroom" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#shellfish", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#fishery-product" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#fishery-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -4370,15 +4472,15 @@ "@value" : "shellfish" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#simmering-meat", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#beef" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#beef" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -4388,15 +4490,15 @@ "@value" : "viande à mijoter" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#smooth-cabbage", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#cabbage" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#cabbage" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -4406,15 +4508,15 @@ "@value" : "smooth cabbage" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#smoothie", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#soft-drink" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#soft-drink" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -4424,15 +4526,15 @@ "@value" : "smoothie" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#snails", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#meat-product" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#meat-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -4442,22 +4544,22 @@ "@value" : "snails" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#soft-drink", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#drink" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#drink" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#fruit-juice" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#fruit-juice" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#lemonade" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#lemonade" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#smoothie" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#smoothie" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -4467,15 +4569,15 @@ "@value" : "soft drink" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#soup", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#processed-vegetable" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#processed-vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -4485,15 +4587,15 @@ "@value" : "soupe" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#spinach", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#salad" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#salad" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -4503,26 +4605,26 @@ "@value" : "épinards" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#squash", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#vegetable" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#butternut" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#butternut" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#hierloom-squash" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#hierloom-squash" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#pattypan-squash" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#pattypan-squash" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#pumpkin" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#pumpkin" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#uchiki-kuri-squash" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#uchiki-kuri-squash" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -4532,15 +4634,15 @@ "@value" : "squash" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#strawberry", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#fruit" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#fruit" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -4550,26 +4652,26 @@ "@value" : "strawberry" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#sweet-groceries", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#local-grocery-store" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#local-grocery-store" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#biscuit" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#biscuit" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#confectionery" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#confectionery" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#honey" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#honey" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#jam" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#jam" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#pastry" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#pastry" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -4579,15 +4681,15 @@ "@value" : "épicerie sucrée" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#sweet-yogurt", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#cow-dairy-product" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#cow-dairy-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -4597,15 +4699,15 @@ "@value" : "yaourt sucré" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#tarragon", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#aromatic" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#aromatic" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -4615,15 +4717,15 @@ "@value" : "tarragon" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#thyme", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#aromatic" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#aromatic" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -4633,24 +4735,24 @@ "@value" : "thyme" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#tomato", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#vegetable" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#cherry-tomato" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#cherry-tomato" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#cluster-tomato" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#cluster-tomato" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#old-variety-tomato" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#old-variety-tomato" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#round-tomato" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#round-tomato" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -4660,15 +4762,15 @@ "@value" : "tomato" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#truffle", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#mushroom" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#mushroom" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -4678,15 +4780,15 @@ "@value" : "truffle" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#turkey", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#poultry" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#poultry" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -4696,15 +4798,15 @@ "@value" : "turkey" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#turnip", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#vegetable" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -4714,15 +4816,15 @@ "@value" : "turnip" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#uchiki-kuri-squash", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#squash" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#squash" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -4732,15 +4834,15 @@ "@value" : "uchiki kuri squash" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#veal", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#meat-product" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#meat-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -4750,89 +4852,89 @@ "@value" : "veau" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#vegetable", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#narrower" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#artichoke" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#artichoke" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#asparagus" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#asparagus" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#bean" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#bean" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#beetroot" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#beetroot" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#cabbage" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#cabbage" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#carrot" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#carrot" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#celeriac" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#celeriac" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#celery-branch" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#celery-branch" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#chard" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#chard" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#courgette" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#courgette" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#cucumber" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#cucumber" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#dried-vegetable" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#dried-vegetable" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#eggplant" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#eggplant" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#fennel" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#fennel" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#fifth-range-vegetable" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#fifth-range-vegetable" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#fourth-range-vegetable" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#fourth-range-vegetable" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#garlic" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#garlic" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#green-garlic" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#green-garlic" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#herb" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#herb" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#jerusalem-artichoke" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#jerusalem-artichoke" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#leek" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#leek" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#melon" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#melon" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#mushroom" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#mushroom" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#non-local-vegetable" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#non-local-vegetable" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#onion" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#onion" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#parsnip" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#parsnip" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#pepper" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#pepper" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#potato" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#potato" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#radish" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#radish" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#rhubarb" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#rhubarb" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#rutabaga" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#rutabaga" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#salad" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#salad" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#salsify" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#salsify" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#shallot" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#shallot" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#squash" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#squash" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#tomato" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#tomato" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#turnip" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#turnip" }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#yam" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#yam" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -4842,18 +4944,18 @@ "@value" : "vegetable" } ], "http://www.w3.org/2004/02/skos/core#topConceptOf" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#viennoiserie-", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#bakery" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#bakery" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "en", @@ -4863,15 +4965,15 @@ "@value" : "viennoiserie" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#walnut", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#nut" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#nut" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -4881,15 +4983,15 @@ "@value" : "walnut" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#wine", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#alcoholic-beverage" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#alcoholic-beverage" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -4899,15 +5001,19 @@ "@value" : "wine" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#yam", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#yam", "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" : [ { "@id" : "http://www.w3.org/2004/02/skos/core#Concept" } ], + "http://www.w3.org/2004/02/skos/core#altLabel" : [ { + "@language" : "en", + "@value" : "Sweet Potato" + } ], "http://www.w3.org/2004/02/skos/core#broader" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#vegetable" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#vegetable" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -4917,15 +5023,15 @@ "@value" : "yam" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#yogurt-on-a-bed-of-fruit", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#cow-dairy-product" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#cow-dairy-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -4935,15 +5041,15 @@ "@value" : "yogurt on a bed of fruit" } ] }, { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf#yogurt-with-fruits", + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/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" : "http://static.datafoodconsortium.org/data/productTypes.rdf#cow-dairy-product" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf#cow-dairy-product" } ], "http://www.w3.org/2004/02/skos/core#inScheme" : [ { - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ], "http://www.w3.org/2004/02/skos/core#prefLabel" : [ { "@language" : "fr", @@ -4952,12 +5058,6 @@ "@language" : "en", "@value" : "yogurt with fruits" } ] - }, { - "@id" : "http://www.w3.org/2004/02/skos/core#Concept", - "@type" : [ "http://www.w3.org/2002/07/owl#Class" ] - }, { - "@id" : "http://www.w3.org/2004/02/skos/core#ConceptScheme", - "@type" : [ "http://www.w3.org/2002/07/owl#Class" ] } ], - "@id" : "http://static.datafoodconsortium.org/data/productTypes.rdf" + "@id" : "https://github.com/datafoodconsortium/taxonomies/releases/latest/download/productTypes.rdf" } ] \ No newline at end of file diff --git a/swagger/dfc.yaml b/swagger/dfc.yaml index 2de4b0d8ba..5ef9c9e319 100644 --- a/swagger/dfc.yaml +++ b/swagger/dfc.yaml @@ -110,7 +110,7 @@ paths: "@type": dfc-b:SuppliedProduct dfc-b:name: Apple dfc-b:description: Red - dfc-b:hasType: http://static.datafoodconsortium.org/data/productTypes.rdf#non-local-vegetable + dfc-b:hasType: dfc-pt:non-local-vegetable dfc-b:hasQuantity: "@type": dfc-b:QuantitativeValue dfc-b:hasUnit: dfc-m:Gram @@ -341,7 +341,7 @@ paths: "@type": dfc-b:SuppliedProduct dfc-b:name: Apple dfc-b:description: Round - dfc-b:hasType: http://static.datafoodconsortium.org/data/productTypes.rdf#non-local-vegetable + dfc-b:hasType: dfc-pt:non-local-vegetable dfc-b:hasQuantity: "@type": dfc-b:QuantitativeValue dfc-b:hasUnit: dfc-m:Gram @@ -446,7 +446,7 @@ paths: "@type": dfc-b:SuppliedProduct dfc-b:name: Apple dfc-b:description: A delicious heritage apple - dfc-b:hasType: http://static.datafoodconsortium.org/data/productTypes.rdf#non-local-vegetable + dfc-b:hasType: dfc-pt:non-local-vegetable dfc-b:hasQuantity: "@type": dfc-b:QuantitativeValue dfc-b:hasUnit: dfc-m:Gram @@ -510,7 +510,7 @@ paths: "@type": dfc-b:SuppliedProduct dfc-b:name: Pesto dfc-b:description: Basil Pesto - dfc-b:hasType: http://static.datafoodconsortium.org/data/productTypes.rdf#non-local-vegetable + dfc-b:hasType: dfc-pt:non-local-vegetable dfc-b:hasQuantity: "@type": dfc-b:QuantitativeValue dfc-b:hasUnit: dfc-m:Gram