Pinwheel · Schema

EmployeeNameAndAddress

PayrollDirect DepositIncome VerificationEmploymentTax FormsFintechOpen FinanceBill SwitchingFinancial Data

Properties

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

JSON Schema

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