Authorized operation result.
application/json
{
"$ref": "#/components/schemas/CanonicalQuoteFilingFeeCanonicalResponse",
"type": "object",
"required": [
"data",
"requestId"
],
"properties": {
"data": {
"type": "object",
"properties": {
"claimAmount": {
"$ref": "#/components/schemas/FiatMoney",
"type": "object",
"additionalProperties": false,
"required": [
"currency",
"minorUnits"
],
"properties": {
"currency": {
"type": "string",
"const": "USD"
},
"minorUnits": {
"type": "string",
"pattern": "^(0|[1-9][0-9]{0,77})$"
}
}
},
"declaratoryOnly": {
"type": "boolean"
},
"collectionMode": {
"type": "string"
},
"tier": {
"type": "string"
},
"rateBasisPoints": {
"type": "string"
},
"percentComponent": {
"$ref": "#/components/schemas/FiatMoney",
"type": "object",
"additionalProperties": false,
"required": [
"currency",
"minorUnits"
],
"properties": {
"currency": {
"type": "string",
"const": "USD"
},
"minorUnits": {
"type": "string",
"pattern": "^(0|[1-9][0-9]{0,77})$"
}
}
},
"floor": {
"$ref": "#/components/schemas/FiatMoney",
"type": "object",
"additionalProperties": false,
"required": [
"currency",
"minorUnits"
],
"properties": {
"currency": {
"type": "string",
"const": "USD"
},
"minorUnits": {
"type": "string",
"pattern": "^(0|[1-9][0-9]{0,77})$"
}
}
},
"baseFee": {
"$ref": "#/components/schemas/FiatMoney",
"type": "object",
"additionalProperties": false,
"required": [
"currency",
"minorUnits"
],
"properties": {
"currency": {
"type": "string",
"const": "USD"
},
"minorUnits": {
"type": "string",
"pattern": "^(0|[1-9][0-9]{0,77})$"
}
}
},
"panelSurchargeRateBasisPoints": {
"type": "string"
},
"panelSurcharge": {
"$ref": "#/components/schemas/FiatMoney",
"type": "object",
"additionalProperties": false,
"required": [
"currency",
"minorUnits"
],
"properties": {
"currency": {
"type": "string",
"const": "USD"
},
"minorUnits": {
"type": "string",
"pattern": "^(0|[1-9][0-9]{0,77})$"
}
}
},
"forumFee": {
"$ref": "#/components/schemas/FiatMoney",
"type": "object",
"additionalProperties": false,
"required": [
"currency",
"minorUnits"
],
"properties": {
"currency": {
"type": "string",
"const": "USD"
},
"minorUnits": {
"type": "string",
"pattern": "^(0|[1-9][0-9]{0,77})$"
}
}
},
"waived": {
"type": "boolean"
}
},
"required": [
"claimAmount",
"collectionMode",
"tier",
"rateBasisPoints",
"percentComponent",
"floor",
"baseFee",
"panelSurchargeRateBasisPoints",
"panelSurcharge",
"forumFee",
"waived"
]
},
"requestId": {
"type": "string"
}
},
"x-code-source": "app/api/v2/fees/quote/route.ts"
}