2017-10-05 11:05:29 -04:00
|
|
|
{
|
|
|
|
"type": "object",
|
|
|
|
"required" : [
|
2017-11-06 11:02:28 -05:00
|
|
|
"status",
|
|
|
|
"applications"
|
2017-10-05 11:05:29 -04:00
|
|
|
],
|
|
|
|
"properties" : {
|
|
|
|
"status": { "type": "string" },
|
2017-10-31 06:29:56 -04:00
|
|
|
"status_reason": { "type": ["string", "null"] },
|
2017-11-06 11:02:28 -05:00
|
|
|
"applications": {
|
|
|
|
"type": "array",
|
|
|
|
"items": { "$ref": "#/definitions/application_status" }
|
|
|
|
}
|
2017-10-05 11:05:29 -04:00
|
|
|
},
|
2017-10-31 06:29:56 -04:00
|
|
|
"additionalProperties": false,
|
|
|
|
"definitions": {
|
2017-11-06 11:02:28 -05:00
|
|
|
"application_status": {
|
2017-10-31 06:29:56 -04:00
|
|
|
"type": "object",
|
|
|
|
"additionalProperties": false,
|
|
|
|
"properties" : {
|
2017-11-06 11:02:28 -05:00
|
|
|
"name": { "type": "string" },
|
2017-10-31 06:29:56 -04:00
|
|
|
"status": {
|
|
|
|
"type": {
|
|
|
|
"enum": [
|
|
|
|
"installable",
|
2017-11-06 11:02:28 -05:00
|
|
|
"scheduled",
|
2017-10-31 06:29:56 -04:00
|
|
|
"installing",
|
|
|
|
"installed",
|
2017-11-06 11:02:28 -05:00
|
|
|
"errored"
|
2017-10-31 06:29:56 -04:00
|
|
|
]
|
|
|
|
}
|
|
|
|
},
|
2019-01-30 04:26:52 -05:00
|
|
|
"version": { "type": "string" },
|
2018-02-11 22:22:15 -05:00
|
|
|
"status_reason": { "type": ["string", "null"] },
|
2018-05-16 05:01:13 -04:00
|
|
|
"external_ip": { "type": ["string", "null"] },
|
2019-03-07 16:51:43 -05:00
|
|
|
"external_hostname": { "type": ["string", "null"] },
|
2018-12-07 11:10:03 -05:00
|
|
|
"hostname": { "type": ["string", "null"] },
|
2019-02-07 16:40:55 -05:00
|
|
|
"email": { "type": ["string", "null"] },
|
2019-11-17 22:06:28 -05:00
|
|
|
"stack": { "type": ["string", "null"] },
|
2020-04-15 20:09:22 -04:00
|
|
|
"host": {"type": ["string", "null"]},
|
|
|
|
"port": {"type": ["integer", "514"]},
|
|
|
|
"protocol": {"type": ["integer", "0"]},
|
2019-04-12 01:42:48 -04:00
|
|
|
"update_available": { "type": ["boolean", "null"] },
|
2020-02-27 10:09:24 -05:00
|
|
|
"can_uninstall": { "type": "boolean" },
|
|
|
|
"available_domains": {
|
|
|
|
"type": "array",
|
|
|
|
"items": { "$ref": "#/definitions/domain" }
|
|
|
|
},
|
|
|
|
"pages_domain": { "type": [ { "$ref": "#/definitions/domain" }, "null"] }
|
2017-10-31 06:29:56 -04:00
|
|
|
},
|
2017-11-06 11:02:28 -05:00
|
|
|
"required" : [ "name", "status" ]
|
2020-02-27 10:09:24 -05:00
|
|
|
},
|
|
|
|
"domain": { "id": "integer", "domain": "string" }
|
2017-10-31 06:29:56 -04:00
|
|
|
}
|
2017-10-05 11:05:29 -04:00
|
|
|
}
|