Properties
| Name | Type | Description |
|---|---|---|
| description | string | The description that was provided when uploading the certificate. |
| extension | string | The file format of the certificate, as indicated by the file extension. For example, **.cert** or **.pem**. |
| id | string | The unique identifier of the certificate. |
| name | string | The file name of the certificate. For example, **mycert**. |
| notAfter | string | The date when the certificate stops to be valid. |
| notBefore | string | The date when the certificate starts to be valid. |
| status | string | The status of the certificate. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/AndroidCertificate",
"title": "AndroidCertificate",
"properties": {
"description": {
"description": "The description that was provided when uploading the certificate.",
"type": "string"
},
"extension": {
"description": "The file format of the certificate, as indicated by the file extension. For example, **.cert** or **.pem**.",
"type": "string"
},
"id": {
"description": "The unique identifier of the certificate.",
"type": "string"
},
"name": {
"description": "The file name of the certificate. For example, **mycert**.",
"type": "string"
},
"notAfter": {
"description": "The date when the certificate stops to be valid.",
"format": "date-time",
"type": "string"
},
"notBefore": {
"description": "The date when the certificate starts to be valid.",
"format": "date-time",
"type": "string"
},
"status": {
"description": "The status of the certificate.",
"type": "string"
}
},
"required": [
"id"
],
"type": "object"
}