Synctera · Schema

Person

FinTechBaaSBankingPaymentsCard IssuingKYC

Properties

Name Type Description
creation_time string
first_name string
id string
last_name string
last_updated_time string
middle_name string
relationship_type string
View JSON Schema on GitHub

JSON Schema

synctera-person1-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/person1",
  "title": "Person",
  "properties": {
    "creation_time": {
      "format": "date-time",
      "type": "string"
    },
    "first_name": {
      "type": "string"
    },
    "id": {
      "format": "uuid",
      "type": "string"
    },
    "last_name": {
      "type": "string"
    },
    "last_updated_time": {
      "format": "date-time",
      "type": "string"
    },
    "middle_name": {
      "type": "string"
    },
    "relationship_type": {
      "type": "string"
    }
  },
  "type": "object"
}