Azure Key Vault · Schema

CertificateItem

The certificate item containing certificate metadata.

CertificatesCloud SecurityCryptographyKey ManagementSecrets ManagementSecurity

Properties

Name Type Description
id string Certificate identifier.
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

azure-key-vault-data-plane-certificate-item-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "CertificateItem",
  "type": "object",
  "description": "The certificate item containing certificate metadata.",
  "properties": {
    "id": {
      "type": "string",
      "description": "Certificate identifier."
    },
    "tags": {
      "type": "object",
      "description": "Application specific metadata in the form of key-value pairs."
    },
    "x5t": {
      "type": "string",
      "description": "Thumbprint of the certificate."
    },
    "subject": {
      "type": "string",
      "description": "The subject name of the certificate."
    }
  }
}