-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathproducers.schema.json
31 lines (31 loc) · 962 Bytes
/
producers.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
{
"title": "Pasta producers",
"description": "Brands of producers of pasta",
"type": "array",
"items": {
"$ref": "#/definitions/producer"
},
"definitions": {
"producer": {
"title": "Pasta producer",
"description": "Brand of producers of pasta",
"type": "object",
"required": ["name","timers"],
"properties": {
"name": {
"title": "Name",
"description": "Name of pasta producer",
"type": "string",
"examples": ["Barilla"]
},
"timers": {
"title": "Timers data file",
"description": "Json file with timers",
"type": "string",
"format": "uri-reference",
"examples": ["timers/barilla.json"]
}
}
}
}
}