StatusComponent

Status of a component in a CNAB installation

Application DependenciesCloud NativeIntegrationResearchSpecificationsWorkload Specifications

Properties

Name Type Description
status string Status identifier
message string Details about the current status
components object Nested components with their own status
View JSON Schema on GitHub

JSON Schema

application-research-statuscomponent-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/StatusComponent",
  "title": "StatusComponent",
  "type": "object",
  "description": "Status of a component in a CNAB installation",
  "properties": {
    "status": {
      "type": "string",
      "description": "Status identifier"
    },
    "message": {
      "type": "string",
      "description": "Details about the current status"
    },
    "components": {
      "type": "object",
      "description": "Nested components with their own status",
      "additionalProperties": {
        "$ref": "#/components/schemas/StatusComponent"
      }
    }
  },
  "additionalProperties": true
}