{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/TokenQrRequestIdealCreate", "title": "TokenQrRequestIdealCreate", "type": "object", "properties": { "id": { "type": "integer", "description": "The id of the RequestResponse.", "readOnly": true, "writeOnly": false }, "time_responded": { "type": "string", "description": "The timestamp of when the RequestResponse was responded to.", "readOnly": true, "writeOnly": false }, "time_expiry": { "type": "string", "description": "The timestamp of when the RequestResponse expired or will expire.", "readOnly": true, "writeOnly": false }, "monetary_account_id": { "type": "integer", "description": "The id of the MonetaryAccount the RequestResponse was received on.", "readOnly": true, "writeOnly": false }, "amount_inquired": { "type": "object", "description": "The requested Amount.", "readOnly": true, "writeOnly": false, "$ref": "#/components/schemas/Amount" }, "amount_responded": { "type": "object", "description": "The Amount the RequestResponse was accepted with.", "readOnly": true, "writeOnly": false, "$ref": "#/components/schemas/Amount" }, "alias": { "type": "object", "description": "The LabelMonetaryAccount with the public information of the MonetaryAccount this RequestResponse was received on.", "readOnly": true, "writeOnly": false, "$ref": "#/components/schemas/LabelMonetaryAccount" }, "counterparty_alias": { "type": "object", "description": "The LabelMonetaryAccount with the public information of the MonetaryAccount that is requesting money with this RequestResponse.", "readOnly": true, "writeOnly": false, "$ref": "#/components/schemas/LabelMonetaryAccount" }, "description": { "type": "string", "description": "The description for the RequestResponse provided by the requesting party. Maximum 9000 characters.", "readOnly": true, "writeOnly": false }, "attachment": { "type": "array", "description": "The Attachments attached to the RequestResponse.", "readOnly": true, "writeOnly": false, "items": { "$ref": "#/components/schemas/Attachment" } }, "status": { "type": "string", "description": "The status of the created RequestResponse. Can only be PENDING.", "readOnly": true, "writeOnly": false }, "minimum_age": { "type": "integer", "description": "The minimum age the user accepting the RequestResponse must have.", "readOnly": true, "writeOnly": false }, "require_address": { "type": "string", "description": "Whether or not an address must be provided on accept.", "readOnly": true, "writeOnly": false }, "address_shipping": { "type": "object", "description": "The shipping address provided by the accepting user if an address was requested.", "readOnly": true, "writeOnly": false, "$ref": "#/components/schemas/Address" }, "address_billing": { "type": "object", "description": "The billing address provided by the accepting user if an address was requested.", "readOnly": true, "writeOnly": false, "$ref": "#/components/schemas/Address" }, "geolocation": { "type": "object", "description": "The Geolocation where the RequestResponse was created.", "readOnly": true, "writeOnly": false, "$ref": "#/components/schemas/Geolocation" }, "redirect_url": { "type": "string", "description": "The URL which the user is sent to after accepting or rejecting the Request.", "readOnly": true, "writeOnly": false }, "type": { "type": "string", "description": "The type of the RequestResponse. Can be only be IDEAL.", "readOnly": true, "writeOnly": false }, "sub_type": { "type": "string", "description": "The subtype of the RequestResponse. Can be only be NONE.", "readOnly": true, "writeOnly": false }, "eligible_whitelist_id": { "type": "integer", "description": "The whitelist id for this action or null.", "readOnly": true, "writeOnly": false } } }