{
"$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
}
}
}