201
Idempotent Stripe Checkout session for the exact partner filing fee.
application/json
{
"$ref": "#/components/schemas/PartnerFilingCheckoutEnvelope",
"type": "object",
"additionalProperties": false,
"required": [
"data",
"requestId"
],
"properties": {
"data": {
"$ref": "#/components/schemas/PartnerFilingCheckout",
"type": "object",
"additionalProperties": false,
"required": [
"schemaVersion",
"caseId",
"checkout"
],
"properties": {
"schemaVersion": {
"type": "string",
"const": "partner-filing-checkout-v1"
},
"caseId": {
"type": "string",
"pattern": "^pcase_[A-Za-z0-9_-]{1,96}$"
},
"checkout": {
"type": "object",
"additionalProperties": false,
"required": [
"id",
"url"
],
"properties": {
"id": {
"type": "string"
},
"url": {
"type": "string",
"format": "uri"
}
}
}
}
},
"requestId": {
"type": "string"
}
}
}