-
Notifications
You must be signed in to change notification settings - Fork 8
/
API.json
35 lines (35 loc) · 1.12 KB
/
API.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
{
"$schema": "http://json-schema.org/draft-03/schema#",
"title": "Ginger S390x API",
"description": "Json schema for Gigner S390x API",
"type": "object",
"properties": {
"networkdevice_update": {
"type": "object",
"properties": {
"osa_portno": {
"description": "Set osa port for configured OSA Express network card",
"type": "integer",
"maximum": 1,
"minimum": 0,
"required": true,
"error": "GS390XIONW009E"
}
},
"additionalProperties": false
},
"networkdevice_configure": {
"type": "object",
"properties": {
"osa_portno": {
"description": "Set osa port for configured OSA Express network card",
"type": "integer",
"maximum": 1,
"minimum": 0,
"error": "GS390XIONW009E"
}
},
"additionalProperties": false
}
}
}