forked from TandoorRecipes/open-tandoor-data
-
Notifications
You must be signed in to change notification settings - Fork 0
/
schema.json
45 lines (45 loc) · 1.3 KB
/
schema.json
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
{
"food": {
"name": "localized_string:128",
"plural_name": "localized_string:128",
"store_category": "reference:category",
"properties": {
"food_amount": "number",
"food_unit": "reference:unit",
"type_values": [
{
"property_type": "reference:property",
"property_value": "number"
}
],
"source": "required"
},
"fdc_id": "string:128"
},
"unit": {
"name": "localized_string:128",
"plural_name": "localized_string:128",
"base_unit": "options::G:KG:ML:L:OUNCE:POUND:FLUID_OUNCE:TSP:TBSP:CUP:PINT:QUART:GALLON:IMPERIAL_FLUID_OUNCE:IMPERIAL_PINT:IMPERIAL_QUART:IMPERIAL_GALLON",
"type": "options:WEIGHT:VOLUME:OTHER"
},
"category": {
"name": "localized_string:128"
},
"property": {
"name": "localized_string:128",
"unit": "string:16"
},
"store": {
"categories": [
"reference:category"
]
},
"conversion": {
"food": "reference:food",
"base_amount": "number",
"base_unit": "reference:unit",
"converted_amount": "number",
"converted_unit": "reference:unit",
"source": "required"
}
}