Lithic · Schema

Holds Response

Paginated response containing hold transactions

FinTechBaaSCard IssuingPaymentsEmbedded Finance

Properties

Name Type Description
data array
has_more boolean
View JSON Schema on GitHub

JSON Schema

lithic-holds-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/holds_response",
  "title": "Holds Response",
  "description": "Paginated response containing hold transactions",
  "type": "object",
  "properties": {
    "data": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/hold_transaction"
      }
    },
    "has_more": {
      "type": "boolean"
    }
  },
  "required": [
    "data",
    "has_more"
  ]
}