Microsoft Azure · Schema

KeyAttributes

The attributes of a key.

API ManagementCloudCloud ComputingEnterpriseInfrastructure as a ServicePlatform as a ServiceT1

Properties

Name Type Description
enabled boolean Whether the key is enabled.
nbf integer Not before date in UTC (Unix time).
exp integer Expiry date in UTC (Unix time).
created integer Creation time in UTC (Unix time).
updated integer Last updated time in UTC (Unix time).
recoveryLevel string The recovery level currently in effect.
recoverableDays integer The soft-delete data retention days.
exportable boolean Whether the private key can be exported.
hsmPlatform string The underlying HSM platform.
View JSON Schema on GitHub

JSON Schema

azure-key-vault-key-attributes-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "KeyAttributes",
  "type": "object",
  "description": "The attributes of a key.",
  "properties": {
    "enabled": {
      "type": "boolean",
      "description": "Whether the key is enabled."
    },
    "nbf": {
      "type": "integer",
      "description": "Not before date in UTC (Unix time)."
    },
    "exp": {
      "type": "integer",
      "description": "Expiry date in UTC (Unix time)."
    },
    "created": {
      "type": "integer",
      "description": "Creation time in UTC (Unix time)."
    },
    "updated": {
      "type": "integer",
      "description": "Last updated time in UTC (Unix time)."
    },
    "recoveryLevel": {
      "type": "string",
      "description": "The recovery level currently in effect."
    },
    "recoverableDays": {
      "type": "integer",
      "description": "The soft-delete data retention days."
    },
    "exportable": {
      "type": "boolean",
      "description": "Whether the private key can be exported."
    },
    "hsmPlatform": {
      "type": "string",
      "description": "The underlying HSM platform."
    }
  }
}