Pinwheel · Schema

SharedFraud

PayrollDirect DepositIncome VerificationEmploymentTax FormsFintechOpen FinanceBill SwitchingFinancial Data

Properties

Name Type Description
status object The suspected fraud status of the document.
View JSON Schema on GitHub

JSON Schema

sharedfraud.json Raw ↑
{
  "properties": {
    "status": {
      "allOf": [
        {
          "type": "string",
          "enum": [
            "suspected",
            "not_suspected",
            "unavailable"
          ]
        }
      ],
      "description": "The suspected fraud status of the document."
    }
  },
  "type": "object",
  "required": [
    "status"
  ],
  "title": "SharedFraud",
  "x-tags": [
    "Schemas"
  ],
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://schema.pinwheelapi.com/SharedFraud.json"
}