-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathProduct.jsonld
103 lines (103 loc) · 2.59 KB
/
Product.jsonld
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"@context": [
"https://forge.etsi.org/gitlab/NGSI-LD/NGSI-LD/raw/master/coreContext/ngsi-ld-core-context.json",
"https://raw.githubusercontent.com/GSMADeveloper/NGSI-LD-Entities/master/examples/Product-context.jsonld"
],
"id": "urn:ngsi-ld:Product:6223903a-d8c5-4e7e-af24-cc90967feb61",
"type": "Product",
"createdAt": "2017-01-01T01:20:00Z",
"modifiedAt": "2017-05-04T12:30:00Z",
"source": "https://source.example.com",
"dataProvider": "https://provider.example.com",
"entityVersion": 2.0,
"productType": {
"type": "Relationship",
"object": "urn:ngsi-ld:ProductType:27242396-032d-11e7-83f3-83fdf070a882"
},
"supplierName": {
"type": "Property",
"value": "ACME Direct, Inc."
},
"gtin": {
"type": "Property",
"value": "01234567890"
},
"gpcCategoryCode": {
"type": "Property",
"value": "10000271"
},
"productName": {
"type": "Property",
"value": "Paprika, dried, powdered"
},
"description": {
"type": "Property",
"value": "Natural paprika grown in Suffolk"
},
"brand": {
"type": "Property",
"value": "All natural Suffolk spice"
},
"inPackageWidth": {
"type": "Property",
"value": {
"value": 25,
"unitText": "inch"
},
"unitCode": "INH"
},
"inPackageDepth": {
"type": "Property",
"value": {
"value": 5,
"unitText": "inch"
},
"unitCode": "INH"
},
"inPackageHeight": {
"type": "Property",
"value": {
"value": 15,
"unitText": "inch"
},
"unitCode": "INH"
},
"netWeight": {
"type": "Property",
"value": {
"value": 2500,
"unitText": "grammes"
},
"unitCode": "GRM"
},
"grossWeight": {
"type": "Property",
"value": {
"value": 3000,
"unitText": "grammes"
},
"unitCode": "GRM"
},
"countryOfOrigin": {
"type": "Property",
"value": "UK"
},
"images": {
"type": "Property",
"value": [
"http://example.com/productImg1.jpg",
"http://example.com/productImg2.jpg"
]
},
"producerURI": {
"type": "Property",
"value": {
"@value": "http://www.example.com",
"@type": "https://schema.org/url"
}
},
"manufacturer": {
"type": "Property",
"name": "ACME Suffolk Spice Company"
}
}