Files
deb-python-dcos/dcos/data/marathon/error.schema.json
Charles Ruhland ec496dcd14 Add Marathon pods support (#778)
- Commands detect if Marathon provides the pods API
- Commands supported: add, list, remove, show, update
- Rename `dcos.util.normalize_app_id()` to `normalize_marathod_id_path()`.
- Make Marathon 409 response status error message less confusing
- Marathon deployment table view now includes pods
2016-09-30 14:50:56 -07:00

25 lines
394 B
JSON

{
"type": "object",
"properties": {
"errors": {
"type": "array",
"items": {
"type": "object",
"properties": {
"error": {
"type": "string"
}
},
"required": ["error"]
}
},
"message": {
"type": "string"
}
},
"anyOf": [
{"required": ["errors"]},
{"required": ["message"]}
]
}