Azure Key Vault · Schema

IssuerParameters

Parameters for the issuer of the X509 component of a certificate.

CertificatesCloud SecurityCryptographyKey ManagementSecrets ManagementSecurity

Properties

Name Type Description
name string Name of the referenced issuer object or reserved names; for example, 'Self' or 'Unknown'.
cty string Certificate type as supported by the provider (optional); for example 'OV-SSL', 'EV-SSL'.
cert_transparency boolean Indicates if the certificates generated under this policy should be published to certificate transparency logs.
View JSON Schema on GitHub

JSON Schema

microsoft-azure-key-vault-issuerparameters-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/IssuerParameters",
  "title": "IssuerParameters",
  "type": "object",
  "description": "Parameters for the issuer of the X509 component of a certificate.",
  "properties": {
    "name": {
      "type": "string",
      "description": "Name of the referenced issuer object or reserved names; for example, 'Self' or 'Unknown'.",
      "example": "Example Title"
    },
    "cty": {
      "type": "string",
      "description": "Certificate type as supported by the provider (optional); for example 'OV-SSL', 'EV-SSL'.",
      "example": "example_value"
    },
    "cert_transparency": {
      "type": "boolean",
      "description": "Indicates if the certificates generated under this policy should be published to certificate transparency logs.",
      "example": true
    }
  }
}