Middesk · Schema

Watchlist

Business VerificationKYBKnow Your BusinessIdentity VerificationComplianceEIN ValidationTIN VerificationSanctions ScreeningBusiness MonitoringFintechRegTech

Properties

Name Type Description
object string
id string
hit_count integer
agencies array
lists array
people array
View JSON Schema on GitHub

JSON Schema

watchlist.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/middesk/main/json-schema/watchlist.json",
  "title": "Watchlist",
  "type": "object",
  "properties": {
    "object": {
      "type": "string"
    },
    "id": {
      "type": "string",
      "format": "uuid"
    },
    "hit_count": {
      "type": "integer"
    },
    "agencies": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/type_:WatchlistAgency"
      }
    },
    "lists": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/type_:WatchlistSource"
      }
    },
    "people": {
      "type": "array",
      "items": {
        "type": "object",
        "additionalProperties": {
          "description": "Any type"
        }
      }
    }
  },
  "required": [
    "object",
    "id",
    "hit_count",
    "agencies",
    "lists",
    "people"
  ]
}