Status

Error or result status.

Container OrchestrationKubernetesLoad BalancingNetworkingService Discovery

Properties

Name Type Description
code integer
message string
reason string
status string
View JSON Schema on GitHub

JSON Schema

kubernetes-services-status-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Status",
  "title": "Status",
  "type": "object",
  "description": "Error or result status.",
  "properties": {
    "code": {
      "type": "integer"
    },
    "message": {
      "type": "string"
    },
    "reason": {
      "type": "string"
    },
    "status": {
      "type": "string",
      "enum": [
        "Success",
        "Failure"
      ]
    }
  }
}