Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| snis | array | Server Name Indications for this certificate |
| cert | string | PEM-encoded certificate |
| status | string | |
| expiresAt | string | |
| createdAt | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Certificate",
"title": "Certificate",
"type": "object",
"properties": {
"id": {
"type": "string"
},
"snis": {
"type": "array",
"items": {
"type": "string"
},
"description": "Server Name Indications for this certificate"
},
"cert": {
"type": "string",
"description": "PEM-encoded certificate"
},
"status": {
"type": "string",
"enum": [
"active",
"expired",
"revoked"
]
},
"expiresAt": {
"type": "string",
"format": "date-time"
},
"createdAt": {
"type": "string",
"format": "date-time"
}
}
}