Microsoft Azure · Schema

KeyBundle

A key bundle containing the key and its attributes.

API ManagementCloudCloud ComputingEnterpriseInfrastructure as a ServicePlatform as a ServiceT1

Properties

Name Type Description
key object
attributes object
tags object Application-specific metadata in the form of key-value pairs.
managed boolean Whether the key's lifetime is managed by Key Vault.
release_policy object
View JSON Schema on GitHub

JSON Schema

microsoft-azure-keybundle-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/KeyBundle",
  "title": "KeyBundle",
  "type": "object",
  "description": "A key bundle containing the key and its attributes.",
  "properties": {
    "key": {
      "$ref": "#/components/schemas/JsonWebKey"
    },
    "attributes": {
      "$ref": "#/components/schemas/KeyAttributes"
    },
    "tags": {
      "type": "object",
      "additionalProperties": {
        "type": "string"
      },
      "description": "Application-specific metadata in the form of key-value pairs.",
      "example": "example_value"
    },
    "managed": {
      "type": "boolean",
      "readOnly": true,
      "description": "Whether the key's lifetime is managed by Key Vault.",
      "example": true
    },
    "release_policy": {
      "$ref": "#/components/schemas/KeyReleasePolicy"
    }
  }
}