Azure Key Vault · Schema
CertificateBundle
A certificate bundle consists of a certificate (X509) plus its attributes.
CertificatesCloud SecurityCryptographyKey ManagementSecrets ManagementSecurity
Properties
| Name | Type | Description |
|---|---|---|
| id | string | The certificate id. |
| kid | string | The key id. |
| sid | string | The secret id. |
| x5t | string | Thumbprint of the certificate. |
| cer | string | CER contents of x509 certificate. |
| contentType | string | The content type of the secret. |
| attributes | object | |
| tags | object | Application specific metadata in the form of key-value pairs. |
| policy | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/CertificateBundle",
"title": "CertificateBundle",
"type": "object",
"description": "A certificate bundle consists of a certificate (X509) plus its attributes.",
"properties": {
"id": {
"type": "string",
"description": "The certificate id.",
"example": "abc123"
},
"kid": {
"type": "string",
"description": "The key id.",
"example": "500123"
},
"sid": {
"type": "string",
"description": "The secret id.",
"example": "500123"
},
"x5t": {
"type": "string",
"format": "base64url",
"description": "Thumbprint of the certificate.",
"example": "example_value"
},
"cer": {
"type": "string",
"format": "byte",
"description": "CER contents of x509 certificate.",
"example": "example_value"
},
"contentType": {
"type": "string",
"description": "The content type of the secret.",
"example": "example_value"
},
"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"
},
"policy": {
"$ref": "#/components/schemas/CertificatePolicy"
}
}
}