Azure Key Vault · Schema

CertificateItem

The certificate item containing certificate metadata.

CertificatesCloud SecurityCryptographyKey ManagementSecrets ManagementSecurity

Properties

Name Type Description
id string Certificate identifier.
attributes object
tags object Application specific metadata in the form of key-value pairs.
x5t string Thumbprint of the certificate.
subject string The subject name of the certificate.
View JSON Schema on GitHub

JSON Schema

microsoft-azure-key-vault-certificateitem-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CertificateItem",
  "title": "CertificateItem",
  "type": "object",
  "description": "The certificate item containing certificate metadata.",
  "properties": {
    "id": {
      "type": "string",
      "description": "Certificate identifier.",
      "example": "abc123"
    },
    "attributes": {
      "$ref": "#/components/schemas/CertificateAttributes"
    },
    "tags": {
      "type": "object",
      "additionalProperties": {
        "type": "string"
      },
      "description": "Application specific metadata in the form of key-value pairs.",
      "example": "example_value"
    },
    "x5t": {
      "type": "string",
      "format": "base64url",
      "description": "Thumbprint of the certificate.",
      "example": "example_value"
    },
    "subject": {
      "type": "string",
      "description": "The subject name of the certificate.",
      "example": "example_value"
    }
  }
}