Properties
| Name | Type | Description |
|---|---|---|
| certificates | array | Leaf and sub-CA certificates provided by Apple |
| device_type | object | |
| nonce | string | One-time-use nonce provided by Apple for security purposes. |
| nonce_signature | string | Apple-provided signature to the nonce. |
| provisioning_app_version | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/apple_digital_wallet_provision_request",
"title": "apple_digital_wallet_provision_request",
"properties": {
"certificates": {
"description": "Leaf and sub-CA certificates provided by Apple",
"items": {
"description": "Array of Base64 encoded certificates from Apple.",
"type": "string"
},
"type": "array"
},
"device_type": {
"$ref": "#/components/schemas/device_type"
},
"nonce": {
"description": "One-time-use nonce provided by Apple for security purposes.",
"type": "string"
},
"nonce_signature": {
"description": "Apple-provided signature to the nonce.",
"type": "string"
},
"provisioning_app_version": {
"$ref": "#/components/schemas/provisioning_app_version"
}
},
"required": [
"device_type",
"provisioning_app_version",
"certificates",
"nonce",
"nonce_signature"
],
"type": "object"
}