OpenShift · Schema

Status

Status is a return value for calls that do not return other objects.

CI/CDCloud NativeContainersDevOpsEnterpriseKubernetesPaaS

Properties

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

JSON Schema

openshift-rest-status-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Status",
  "type": "object",
  "description": "Status is a return value for calls that do not return other objects.",
  "properties": {
    "apiVersion": {
      "type": "string"
    },
    "kind": {
      "type": "string"
    },
    "status": {
      "type": "string"
    },
    "message": {
      "type": "string"
    },
    "reason": {
      "type": "string"
    },
    "code": {
      "type": "integer"
    }
  }
}