Microsoft Azure · Schema

CloudError

An error response from the Container service.

API ManagementCloudCloud ComputingEnterpriseInfrastructure as a ServicePlatform as a ServiceT1

Properties

Name Type Description
error object Details about the error.
View JSON Schema on GitHub

JSON Schema

microsoft-azure-clouderror-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CloudError",
  "title": "CloudError",
  "type": "object",
  "description": "An error response from the Container service.",
  "properties": {
    "error": {
      "type": "object",
      "description": "Details about the error.",
      "properties": {
        "code": {
          "type": "string",
          "description": "An identifier for the error."
        },
        "message": {
          "type": "string",
          "description": "A message describing the error."
        },
        "target": {
          "type": "string",
          "description": "The target of the particular error."
        },
        "details": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "code": {
                "type": "string"
              },
              "message": {
                "type": "string"
              },
              "target": {
                "type": "string"
              }
            }
          },
          "description": "A list of additional details about the error."
        }
      },
      "example": "example_value"
    }
  }
}