Microsoft Azure · Schema

KeyItem

The key item containing key metadata.

API ManagementCloudCloud ComputingEnterpriseInfrastructure as a ServicePlatform as a ServiceT1

Properties

Name Type Description
kid string Key identifier.
attributes object
tags object
managed boolean
View JSON Schema on GitHub

JSON Schema

microsoft-azure-keyitem-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/KeyItem",
  "title": "KeyItem",
  "type": "object",
  "description": "The key item containing key metadata.",
  "properties": {
    "kid": {
      "type": "string",
      "description": "Key identifier.",
      "example": "500123"
    },
    "attributes": {
      "$ref": "#/components/schemas/KeyAttributes"
    },
    "tags": {
      "type": "object",
      "additionalProperties": {
        "type": "string"
      },
      "example": "example_value"
    },
    "managed": {
      "type": "boolean",
      "readOnly": true,
      "example": true
    }
  }
}