{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-structure/management-android-certificate-structure.json", "description": "AndroidCertificate schema from Adyen API", "type": "object", "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.", "type": "datetime" }, "notBefore": { "description": "The date when the certificate starts to be valid.", "type": "datetime" }, "status": { "description": "The status of the certificate.", "type": "string" } }, "required": [ "id" ], "name": "AndroidCertificate" }