Synctera · Schema

document_list

FinTechBaaSBankingPaymentsCard IssuingKYC
View JSON Schema on GitHub

JSON Schema

synctera-document-list-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/document_list",
  "title": "document_list",
  "allOf": [
    {
      "properties": {
        "documents": {
          "description": "Array of documents.",
          "items": {
            "$ref": "#/components/schemas/document"
          },
          "type": "array"
        }
      },
      "required": [
        "documents"
      ],
      "type": "object"
    },
    {
      "$ref": "#/components/schemas/paginated_response"
    }
  ]
}