Azure Key Vault · Schema

CertificateCreateParameters

The certificate create parameters.

CertificatesCloud SecurityCryptographyKey ManagementSecrets ManagementSecurity

Properties

Name Type Description
policy object
attributes object
tags object Application specific metadata in the form of key-value pairs.
View JSON Schema on GitHub

JSON Schema

microsoft-azure-key-vault-certificatecreateparameters-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CertificateCreateParameters",
  "title": "CertificateCreateParameters",
  "type": "object",
  "description": "The certificate create parameters.",
  "properties": {
    "policy": {
      "$ref": "#/components/schemas/CertificatePolicy"
    },
    "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"
    }
  }
}