Authorized read, response, or recovered result.
application/json
{
"$ref": "#/components/schemas/CanonicalGetAppealFeePreviewResponse",
"type": "object",
"properties": {
"data": {
"$ref": "#/components/schemas/CanonicalAppealFee",
"type": "object",
"properties": {
"quote": {
"$ref": "#/components/schemas/CanonicalAppealFeeQuote",
"type": "object",
"properties": {
"amountUsd": {
"type": "number"
},
"amountDisplay": {
"type": "string"
},
"explanation": {
"type": "string"
},
"waived": {
"type": "boolean"
}
},
"required": [
"amountUsd",
"amountDisplay",
"explanation",
"waived"
]
},
"feeChallenge": {
"$ref": "#/components/schemas/CanonicalAppealFeeChallenge",
"type": "object",
"properties": {
"method": {
"type": "string",
"const": "fiat_card"
},
"feeRecordId": {
"type": "string"
},
"amountUsd": {
"type": "number"
},
"deadlineAt": {
"type": "string"
},
"checkoutEndpoint": {
"type": "string"
}
},
"required": [
"method",
"feeRecordId",
"amountUsd",
"checkoutEndpoint"
]
},
"feeStatus": {
"anyOf": [
{
"type": "string",
"enum": [
"payable",
"confirmed"
]
},
{
"type": "null"
}
]
}
},
"required": [
"quote",
"feeStatus"
]
},
"requestId": {
"type": "string"
}
},
"required": [
"data",
"requestId"
],
"x-code-source": "lib/proceeding/remedy-operations.ts"
}