{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/app_pkcs12", "title": "app_pkcs12", "type": "object", "additionalProperties": false, "properties": { "p12File": { "type": "string", "format": "binary", "description": "The `.p12` file containing the app's APNs information.", "example": "example.p12" }, "p12Pass": { "type": "string", "description": "The password for the corresponding `.p12` file.", "example": "secret" } }, "required": [ "p12File", "p12Pass" ] }