Microsoft Azure · Schema

KeyVaultError

The key vault error exception.

API ManagementCloudCloud ComputingEnterpriseInfrastructure as a ServicePlatform as a ServiceT1

Properties

Name Type Description
error object The key vault server error.
View JSON Schema on GitHub

JSON Schema

microsoft-azure-keyvaulterror-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/KeyVaultError",
  "title": "KeyVaultError",
  "type": "object",
  "description": "The key vault error exception.",
  "properties": {
    "error": {
      "type": "object",
      "readOnly": true,
      "description": "The key vault server error.",
      "properties": {
        "code": {
          "type": "string",
          "readOnly": true,
          "description": "The error code."
        },
        "message": {
          "type": "string",
          "readOnly": true,
          "description": "The error message."
        },
        "innererror": {
          "type": "object",
          "readOnly": true,
          "description": "Inner error details.",
          "properties": {
            "code": {
              "type": "string",
              "readOnly": true
            },
            "innererror": {
              "type": "object",
              "readOnly": true
            }
          }
        }
      },
      "example": "example_value"
    }
  }
}