Skip to content

Commit

Permalink
Release 1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
lecoqlibre committed Apr 20, 2023
1 parent e3e27d6 commit 833cf6b
Showing 1 changed file with 131 additions and 0 deletions.
131 changes: 131 additions & 0 deletions user.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,131 @@
{
"@context": {
"dfc": "http://static.datafoodconsortium.org/ontologies/DFC_FullModel.owl#",
"dfc-b": "http://static.datafoodconsortium.org/ontologies/DFC_BusinessOntology.owl#",
"dfc-p": "http://static.datafoodconsortium.org/ontologies/DFC_ProductOntology.owl#",
"dfc-t": "http://static.datafoodconsortium.org/ontologies/DFC_TechnicalOntology.owl#",
"dfc-u": "http://static.datafoodconsortium.org/data/units.rdf#",
"dfc-pt": "http://static.datafoodconsortium.org/data/productTypes.rdf#",
"dfc-p:hasUnit": {
"@type": "@id"
},
"dfc-p:hasType": {
"@type": "@id"
},
"dfc-b:references": {
"@type": "@id"
},
"dfc-b:offeresTo": {
"@type": "@id"
},
"@base": "http://maPlateformeNationale/"
},
"@id": "personId",
"@type": "dfc-b:Person",
"dfc-b:familyName": "Doe",
"dfc-b:firtsName": "Jhon",
"dfc-b:hasAdress": {
"@type": "dfc-b:Address",
"dfc-b:city": "",
"dfc-b:country": "",
"dfc-b:postcode": "",
"dfc-b:street": ""
},
"dfc-b:affiliates": [
{
"@id": "entreprise/entrepriseId",
"@type": "dfc-b:Entreprise",
"dfc-b:VATnumber": "",
"dfc-b:defines": [
{
"@id": "customerCategory/customerCategoryId1",
"@type": "dfc-b:CustomerCategory",
"dfc-b:description": "member"
},
{
"@id": "customerCategory/customerCategoryId2",
"@type": "dfc-b:CustomerCategory",
"dfc-b:description": "non member"
}
],
"dfc-b:supplies": [
{
"@id": "suppliedProduct/item3",
"@type" : "dfc-b:SuppliedProduct",
"dfc-p:hasType": "dfc-pt:carrot",
"dfc-p:hasUnit": "dfc-u:u",
"dfc-b:quantity": "99.99",
"dfc-b:description": "supply description 1",
"dfc-b:totalTheoriticalStock": "999",
"dfc-b:brand": "supply brand",
"dfc-b:claim": "supply claim",
"dfc-b:image": "supply image url",
"dfc-b:lifeTime": "supply lifeTime",
"dfc-b:physicalCharacterisctics": "supply physical characterisctics"
},
{
"@id": "suppliedProduct/item4",
"@type" : "dfc-b:SuppliedProduct",
"dfc-p:hasType": "dfc-pt:prune",
"dfc-p:hasUnit": "dfc-u:u",
"dfc-b:quantity": "1",
"dfc-b:description": "supply description 2",
"dfc-b:totalTheoriticalStock": "999",
"dfc-b:brand": "supply brand",
"dfc-b:claim": "supply claim",
"dfc-b:image": "supply image url",
"dfc-b:lifeTime": "supply lifeTime",
"dfc-b:physicalCharacterisctics": "supply physical characterisctics"
}
],
"dfc-b:manages": [
{
"@id": "catalogItem/catalogItemId1",
"@type": "dfc-b:CatalogItem",
"dfc-b:references": "/suppliedProduct/item3",
"dfc-b:sku": "catalog item gtin or sku",
"dfc-b:stockLimitation": "999",
"dfc-b:offeredThrough": [
{
"@id": "offer/offerId1",
"@type": "dfc-b:Offer",
"dfc-b:offeresTo": "/customerCategoryId1",
"dfc-b:price": "0",
"dfc-b:stockLimitation": "999"
},
{
"@id": "offer/offerId2",
"@type": "dfc-b:Offer",
"dfc-b:offeresTo": "/customerCategoryId2",
"dfc-b:price": "999",
"dfc-b:stockLimitation": "999"
}
]
},
{
"@id": "catalogItem/catalogItemId2",
"@type": "dfc-b:CatalogItem",
"dfc-b:sku": "catalog item gtin or sku",
"dfc-b:stockLimitation": "999",
"dfc-b:references": "/suppliedProduct/item4",
"dfc-b:offeredThrough": [
{
"@id": "offer/offerId3",
"@type": "dfc-b:Offer",
"dfc-b:offeresTo": "/customerCategoryId1",
"dfc-b:price": "000",
"dfc-b:stockLimitation": "999"
},
{
"@id": "offer/offerId4",
"@type": "dfc-b:Offer",
"dfc-b:offeresTo": "/customerCategoryId2",
"dfc-b:price": "999",
"dfc-b:stockLimitation": "999"
}
]
}
]
}
]
}

0 comments on commit 833cf6b

Please sign in to comment.