Status

Overall status of a CNAB installation

Application DependenciesCloud NativeIntegrationResearchSpecificationsWorkload Specifications

Properties

Name Type Description
status string Status identifier (Ready, Pending, Failed are well known)
message string Details about the current status
components object Map of component names to their status
View JSON Schema on GitHub

JSON Schema

application-research-status-schema.json Raw ↑
{
  "$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
}