on-http-y1
Version:
OnRack Http Server
54 lines (53 loc) • 1.66 kB
JSON
{
"title": "raritan-obm-service",
"definitions": {
"ObmBase": {
"description": "Raritan OBM settings",
"type": "object",
"additionalProperties": false,
"properties": {
"nodeId": {
"type": "string"
},
"service": {
"type": "string"
},
"config": {
"type": "object",
"properties": {
"host": {
"description": "Host address",
"type": "string"
},
"user": {
"description": "Host username",
"type": "string"
},
"password": {
"description": "Host password",
"type": "string"
},
"port": {
"description": "Port",
"type": "integer"
}
},
"required": ["host", "user", "password", "port"]
}
}
},
"ObmPatch": {
"type": "object",
"allOf": [
{"$ref": "#/definitions/ObmBase"}
]
},
"Obm": {
"type": "object",
"allOf": [
{"$ref": "#/definitions/ObmBase"},
{"required": ["nodeId", "service", "config"]}
]
}
}
}