{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Status", "title": "Status", "type": "object", "description": "Overall status of a CNAB installation", "properties": { "status": { "type": "string", "description": "Status identifier (Ready, Pending, Failed are well known)" }, "message": { "type": "string", "description": "Details about the current status" }, "components": { "type": "object", "description": "Map of component names to their status", "additionalProperties": { "$ref": "#/components/schemas/StatusComponent" } } }, "additionalProperties": true }