Pinwheel · Schema

EmployerNameAndAddress

PayrollDirect DepositIncome VerificationEmploymentTax FormsFintechOpen FinanceBill SwitchingFinancial Data

Properties

Name Type Description
name string Name of employer, e.g., Apple, Disney, Walmart.
address object The address of the employer.
View JSON Schema on GitHub

JSON Schema

employernameandaddress.json Raw ↑
{
  "properties": {
    "name": {
      "type": "string",
      "title": "name",
      "description": "Name of employer, e.g., Apple, Disney, Walmart."
    },
    "address": {
      "allOf": [
        {
          "$ref": "#/components/schemas/AddressGetResponseItem"
        }
      ],
      "title": "address",
      "description": "The address of the employer."
    }
  },
  "type": "object",
  "title": "EmployerNameAndAddress",
  "x-tags": [
    "Schemas"
  ],
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://schema.pinwheelapi.com/EmployerNameAndAddress.json"
}