Pinwheel · Schema

EmployeeName

PayrollDirect DepositIncome VerificationEmploymentTax FormsFintechOpen FinanceBill SwitchingFinancial Data

Properties

Name Type Description
first_name string The first name of the employee.
middle_name string The middle name of the employee.
last_name string The last name of the employee.
full_name string The full name of the employee.
View JSON Schema on GitHub

JSON Schema

employeename.json Raw ↑
{
  "properties": {
    "first_name": {
      "type": "string",
      "title": "first_name",
      "description": "The first name of the employee."
    },
    "middle_name": {
      "type": "string",
      "title": "middle_name",
      "description": "The middle name of the employee."
    },
    "last_name": {
      "type": "string",
      "title": "last_name",
      "description": "The last name of the employee."
    },
    "full_name": {
      "type": "string",
      "title": "full_name",
      "description": "The full name of the employee."
    }
  },
  "type": "object",
  "required": [
    "full_name"
  ],
  "title": "EmployeeName",
  "x-tags": [
    "Schemas"
  ],
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://schema.pinwheelapi.com/EmployeeName.json"
}