Microsoft Azure · Schema

CertificateAttributes

The certificate management attributes.

API ManagementCloudCloud ComputingEnterpriseInfrastructure as a ServicePlatform as a ServiceT1

Properties

Name Type Description
enabled boolean
nbf integer
exp integer
created integer
updated integer
recoveryLevel string
recoverableDays integer
View JSON Schema on GitHub

JSON Schema

azure-key-vault-certificate-attributes-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "CertificateAttributes",
  "type": "object",
  "description": "The certificate management attributes.",
  "properties": {
    "enabled": {
      "type": "boolean"
    },
    "nbf": {
      "type": "integer"
    },
    "exp": {
      "type": "integer"
    },
    "created": {
      "type": "integer"
    },
    "updated": {
      "type": "integer"
    },
    "recoveryLevel": {
      "type": "string"
    },
    "recoverableDays": {
      "type": "integer"
    }
  }
}