Azure Key Vault · Schema

KeyItem

The key item containing key metadata.

CertificatesCloud SecurityCryptographyKey ManagementSecrets ManagementSecurity

Properties

Name Type Description
kid string Key identifier.
tags object Application specific metadata in the form of key-value pairs.
managed boolean True if the key's lifetime is managed by key vault.
View JSON Schema on GitHub

JSON Schema

azure-key-vault-data-plane-key-item-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "KeyItem",
  "type": "object",
  "description": "The key item containing key metadata.",
  "properties": {
    "kid": {
      "type": "string",
      "description": "Key identifier."
    },
    "tags": {
      "type": "object",
      "description": "Application specific metadata in the form of key-value pairs."
    },
    "managed": {
      "type": "boolean",
      "description": "True if the key's lifetime is managed by key vault."
    }
  }
}