Klarna · Schema

ExtendDueDateOptions

FintechBNPLPaymentsCardsShopping

Properties

Name Type Description
currency string The currency for the fees. Specified in ISO 4217 format.
options array The available options and corresponding fees for extending the due date
View JSON Schema on GitHub

JSON Schema

klarna-extendduedateoptions-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ExtendDueDateOptions",
  "title": "ExtendDueDateOptions",
  "properties": {
    "currency": {
      "description": "The currency for the fees. Specified in ISO 4217 format.",
      "example": "usd",
      "type": "string"
    },
    "options": {
      "description": "The available options and corresponding fees for extending the due date",
      "items": {
        "$ref": "#/components/schemas/OptionDto"
      },
      "type": "array"
    }
  },
  "type": "object"
}