{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://docs.legalesign.com/schemas/start-bulk-input.schema.json",
  "title": "StartBulkInput",
  "description": "Input for the startBulk mutation. Creates a new bulk send task and returns a bulk ID (UUID) for subsequent addBulkDocument calls.",
  "type": "object",
  "required": ["groupId", "name"],
  "properties": {
    "groupId": {
      "type": "string",
      "description": "Base64-encoded group ID."
    },
    "name": {
      "type": "string",
      "description": "Bulk bundle name (e.g. 'March Contracts')."
    }
  }
}
