Azure Key Vault · Schema

Error

The key vault server error.

CertificatesCloud SecurityCryptographyKey ManagementSecrets ManagementSecurity

Properties

Name Type Description
code string The error code.
message string The error message.
innererror object
View JSON Schema on GitHub

JSON Schema

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