Lithic · Schema

Disputes Response

Response for listing disputes

FinTechBaaSCard IssuingPaymentsEmbedded Finance

Properties

Name Type Description
data array Array of dispute objects
has_more boolean Whether there are more results available
View JSON Schema on GitHub

JSON Schema

lithic-disputes-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/disputes-response",
  "title": "Disputes Response",
  "description": "Response for listing disputes",
  "type": "object",
  "properties": {
    "data": {
      "description": "Array of dispute objects",
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/dispute"
      }
    },
    "has_more": {
      "description": "Whether there are more results available",
      "type": "boolean"
    }
  },
  "required": [
    "data",
    "has_more"
  ]
}