Pinwheel · Schema

Tax

PayrollDirect DepositIncome VerificationEmploymentTax FormsFintechOpen FinanceBill SwitchingFinancial Data

Properties

Name Type Description
name string The name of the tax.
category object The category of tax.
amount integer The amount of tax, in cents.
View JSON Schema on GitHub

JSON Schema

taxobjpublicresponseitem.json Raw ↑
{
  "properties": {
    "name": {
      "type": "string",
      "title": "name",
      "description": "The name of the tax."
    },
    "category": {
      "allOf": [
        {
          "type": "string",
          "enum": [
            "federal_income",
            "social_security",
            "medicare",
            "state_income",
            "local_income",
            "other"
          ]
        }
      ],
      "description": "The category of tax."
    },
    "amount": {
      "type": "integer",
      "title": "amount",
      "description": "The amount of tax, in cents."
    }
  },
  "type": "object",
  "required": [
    "name",
    "category",
    "amount"
  ],
  "title": "Tax",
  "x-tags": [
    "Schemas"
  ],
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://schema.pinwheelapi.com/TaxObjPublicResponseItem.json"
}