Synctera · Schema

Prospect

FinTechBaaSBankingPaymentsCard IssuingKYC

Properties

Name Type Description
first_name string First Name
last_name string Last Name
metadata string Client supplied json metadata to be stored with the prospect
source string Source of prospect
status object
View JSON Schema on GitHub

JSON Schema

synctera-prospect-editable-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/prospect_editable",
  "title": "Prospect",
  "properties": {
    "first_name": {
      "description": "First Name",
      "example": "John",
      "type": "string"
    },
    "last_name": {
      "description": "Last Name",
      "example": "Smith",
      "type": "string"
    },
    "metadata": {
      "description": "Client supplied json metadata to be stored with the prospect",
      "example": "{'foo':'bar'}",
      "type": "string"
    },
    "source": {
      "description": "Source of prospect",
      "example": "email",
      "type": "string"
    },
    "status": {
      "$ref": "#/components/schemas/prospect_status",
      "readOnly": false
    }
  },
  "type": "object"
}