Middesk · Schema

BusinessBatch

Business VerificationKYBKnow Your BusinessIdentity VerificationComplianceEIN ValidationTIN VerificationSanctions ScreeningBusiness MonitoringFintechRegTech

Properties

Name Type Description
object string
id string
name string
filename string
business_count integer
completed_business_count integer
created_at string
account object
View JSON Schema on GitHub

JSON Schema

businessbatch.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/middesk/main/json-schema/businessbatch.json",
  "title": "BusinessBatch",
  "type": "object",
  "properties": {
    "object": {
      "type": "string"
    },
    "id": {
      "type": "string",
      "format": "uuid"
    },
    "name": {
      "type": "string"
    },
    "filename": {
      "type": "string"
    },
    "business_count": {
      "type": "integer"
    },
    "completed_business_count": {
      "type": "integer"
    },
    "created_at": {
      "type": "string",
      "format": "date-time"
    },
    "account": {
      "$ref": "#/components/schemas/type_:BusinessBatchAccount"
    }
  },
  "required": [
    "object",
    "id",
    "name",
    "filename",
    "business_count",
    "completed_business_count",
    "created_at",
    "account"
  ]
}