{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://docs.legalesign.com/schemas/add-bulk-document-input.schema.json",
  "title": "AddBulkDocumentInput",
  "description": "Input for the addBulkDocument mutation. Adds a document to an existing bulk send task.",
  "type": "object",
  "required": ["bulkId", "document"],
  "properties": {
    "bulkId": {
      "type": "string",
      "format": "uuid",
      "description": "Bulk task ID (UUID) returned by the startBulk mutation."
    },
    "sendOrder": {
      "type": "integer",
      "description": "Order of this document within the bulk (0-indexed)."
    },
    "document": {
      "$ref": "https://docs.legalesign.com/schemas/send-input.schema.json",
      "description": "Document settings (same structure as the send mutation input)."
    }
  }
}
