Pinwheel · Schema

FieldWarning

PayrollDirect DepositIncome VerificationEmploymentTax FormsFintechOpen FinanceBill SwitchingFinancial Data

Properties

Name Type Description
field string The response field associated with this warning. Nested values are delimited with a `.`, i.e. `parsed_data.box_13.statutory_employee`.
status object The status type of this warning.
message string A full description of the warning.
View JSON Schema on GitHub

JSON Schema

fieldwarning.json Raw ↑
{
  "properties": {
    "field": {
      "type": "string",
      "title": "field",
      "description": "The response field associated with this warning. Nested values are delimited with a `.`, i.e. `parsed_data.box_13.statutory_employee`."
    },
    "status": {
      "allOf": [
        {
          "type": "string",
          "enum": [
            "unparsable"
          ]
        }
      ],
      "description": "The status type of this warning."
    },
    "message": {
      "type": "string",
      "title": "message",
      "description": "A full description of the warning."
    }
  },
  "type": "object",
  "required": [
    "field",
    "status",
    "message"
  ],
  "title": "FieldWarning",
  "x-tags": [
    "Schemas"
  ],
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://schema.pinwheelapi.com/FieldWarning.json"
}