Argo CD · Schema

runtimeError

runtimeError schema from Argo CD API

Continuous DeliveryContainersDeploymentGitOpsKubernetesCNCFOpen Source

Properties

Name Type Description
code integer
details array
error string
message string
View JSON Schema on GitHub

JSON Schema

argo-cd-runtime-error-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/argo-cd/refs/heads/main/json-schema/argo-cd-runtime-error-schema.json",
  "title": "runtimeError",
  "description": "runtimeError schema from Argo CD API",
  "type": "object",
  "properties": {
    "code": {
      "type": "integer",
      "format": "int32"
    },
    "details": {
      "type": "array",
      "items": {
        "$ref": "#/definitions/protobufAny"
      }
    },
    "error": {
      "type": "string"
    },
    "message": {
      "type": "string"
    }
  }
}