{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/affirm/refs/heads/main/json-structure/promos-offer-content-structure.json", "name": "OfferContent", "description": "Available financing offer details for the requested purchase amount.", "type": "object", "properties": { "minimum_loan_amount": { "type": "double", "description": "Minimum purchase amount eligible for Affirm financing.", "example": 1 }, "maximum_loan_amount": { "type": "double", "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" ] } } }