Lithic · Schema

External Payment Action with Progress to Request

FinTechBaaSCard IssuingPaymentsEmbedded Finance

Properties

Name Type Description
memo string
effective_date string
progress_to object
View JSON Schema on GitHub

JSON Schema

lithic-external-payment-action-with-progress-to-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/external_payment_action_with_progress_to_request",
  "title": "External Payment Action with Progress to Request",
  "type": "object",
  "properties": {
    "memo": {
      "type": "string"
    },
    "effective_date": {
      "type": "string",
      "format": "date"
    },
    "progress_to": {
      "$ref": "#/components/schemas/external_payment_progress_to"
    }
  },
  "required": [
    "effective_date"
  ]
}