-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathtimers.schema.json
57 lines (57 loc) · 2.11 KB
/
timers.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
46
47
48
49
50
51
52
53
54
55
56
57
{
"title": "Pasta cooking timers",
"description": "Timers representing cooking time of pasta",
"type": "array",
"items": {
"$ref": "#/definitions/timer"
},
"definitions": {
"timer": {
"title": "Pasta cooking timer",
"description": "Timer representing cooking time of a kind of pasta",
"type": "object",
"required": ["producer","name","time"],
"properties": {
"producer": {
"title": "Producer",
"description": "Name of pasta producer",
"type": "string",
"examples": ["Barilla"]
},
"line": {
"title": "Line",
"description": "Name of pasta line",
"type": "string",
"examples": ["I classici"]
},
"name": {
"title": "Name",
"description": "Name of pasta",
"type": "string",
"examples": ["Spaghetti"]
},
"time": {
"title": "Time",
"description": "Cooking time in minutes",
"type": "integer",
"minimum": 1,
"examples": [9]
},
"url": {
"title": "Web page",
"description": "Official web page of pasta on producer website",
"type": "string",
"format": "uri",
"examples": ["https://www.barilla.com/it-it/prodotti/pasta/i-classici/spaghetti"]
},
"image": {
"title": "Image",
"description": "Official image of pasta on producer website",
"type": "string",
"format": "uri",
"examples": ["https://www.barilla.com//-/media/images/it_it/products/groups/ranges/classic-blue-box/spaghetti_5_500g_f_hr_pack.png"]
}
}
}
}
}