Pinwheel · Schema

ApplicantNameAndAddress

PayrollDirect DepositIncome VerificationEmploymentTax FormsFintechOpen FinanceBill SwitchingFinancial Data

Properties

Name Type Description
name string The full name of the applicant.
address object The address of the applicant.
View JSON Schema on GitHub

JSON Schema

applicantnameandaddress.json Raw ↑
{
  "properties": {
    "name": {
      "type": "string",
      "title": "name",
      "description": "The full name of the applicant."
    },
    "address": {
      "allOf": [
        {
          "$ref": "#/components/schemas/AddressGetResponseItem"
        }
      ],
      "title": "address",
      "description": "The address of the applicant."
    }
  },
  "type": "object",
  "title": "ApplicantNameAndAddress",
  "x-tags": [
    "Schemas"
  ],
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://schema.pinwheelapi.com/ApplicantNameAndAddress.json"
}