{ "$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" ] }