Affirm · Schema

OfferContent

Available financing offer details for the requested purchase amount.

FintechBNPLLendingPaymentsConsumer

Properties

Name Type Description
minimum_loan_amount number Minimum purchase amount eligible for Affirm financing.
maximum_loan_amount number Maximum purchase amount eligible for Affirm financing.
terms array Array of available financing term options for this amount.
View JSON Schema on GitHub

JSON Schema

promos-offer-content-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/affirm/refs/heads/main/json-schema/promos-offer-content-schema.json",
  "title": "OfferContent",
  "description": "Available financing offer details for the requested purchase amount.",
  "type": "object",
  "properties": {
    "minimum_loan_amount": {
      "type": "number",
      "description": "Minimum purchase amount eligible for Affirm financing.",
      "example": 1
    },
    "maximum_loan_amount": {
      "type": "number",
      "description": "Maximum purchase amount eligible for Affirm financing.",
      "example": 1
    },
    "terms": {
      "type": "array",
      "description": "Array of available financing term options for this amount.",
      "items": {
        "$ref": "#/components/schemas/FinancingTerm"
      },
      "example": [
        "example_value"
      ]
    }
  }
}