Azure Key Vault · JSON Structure

Azure Key Vault Data Plane Key Attributes Structure

Type: object Properties: 8
CertificatesCloud SecurityCryptographyKey ManagementSecrets ManagementSecurity

KeyAttributes is a JSON Structure definition published by Azure Key Vault, describing 8 properties. It conforms to the https://json-structure.org/draft/2020-12/schema meta-schema.

Properties

enabled nbf exp created updated recoverableDays exportable hsmPlatform

Meta-schema: https://json-structure.org/draft/2020-12/schema

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/draft/2020-12/schema",
  "name": "KeyAttributes",
  "type": "object",
  "properties": {
    "enabled": {
      "type": "boolean"
    },
    "nbf": {
      "type": "integer"
    },
    "exp": {
      "type": "integer"
    },
    "created": {
      "type": "integer"
    },
    "updated": {
      "type": "integer"
    },
    "recoverableDays": {
      "type": "integer"
    },
    "exportable": {
      "type": "boolean"
    },
    "hsmPlatform": {
      "type": "string"
    }
  }
}