-
Notifications
You must be signed in to change notification settings - Fork 7.4k
/
Copy pathidf_py_help_schema.json
46 lines (46 loc) · 1.3 KB
/
idf_py_help_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
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://github.com/espressif/esp-idf/blob/master/tools/test_idf_py/idf_py_help_schema.json",
"type": "object",
"properties": {
"target": {
"type": ["string", "null"],
"description": "Selected target"
},
"actions": {
"type": "array",
"description": "List of supported actions",
"items": {
"$ref": "#/definitions/actionInfo"
}
}
},
"required": [
"target",
"actions"
],
"definitions": {
"actionInfo": {
"type": "object",
"description": "Information about one action",
"properties": {
"name" : {
"description": "Action name",
"type": "string"
},
"description" : {
"description": "Description of the action",
"type": "string"
},
"options": {
"description": "Additional info about action's options",
"type": "array"
}
},
"required": [
"name",
"description"
]
}
}
}