Synctera · Schema

person_list

FinTechBaaSBankingPaymentsCard IssuingKYC
View JSON Schema on GitHub

JSON Schema

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