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

microsoft-azure-certificateattributes-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CertificateAttributes",
  "title": "CertificateAttributes",
  "type": "object",
  "description": "The certificate management attributes.",
  "properties": {
    "enabled": {
      "type": "boolean",
      "example": true
    },
    "nbf": {
      "type": "integer",
      "example": 10
    },
    "exp": {
      "type": "integer",
      "example": 10
    },
    "created": {
      "type": "integer",
      "readOnly": true,
      "example": 10
    },
    "updated": {
      "type": "integer",
      "readOnly": true,
      "example": 10
    },
    "recoveryLevel": {
      "type": "string",
      "readOnly": true,
      "example": "example_value"
    },
    "recoverableDays": {
      "type": "integer",
      "readOnly": true,
      "example": 10
    }
  }
}