Merge · Schema

BatchObject

Individual batch object with status

IntegrationsPlatformUnified APIAgent HandlerLLM Gateway

Properties

Name Type Description
item_id string
status object Possible per-object statuses: * `PENDING` - This object has not been processed yet * `SUCCESS` - This object was successfully POSTed * `FAILURE` - This object was not successfully POSTed
response object
View JSON Schema on GitHub

JSON Schema

merge-batchobject-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BatchObject",
  "title": "BatchObject",
  "type": "object",
  "properties": {
    "item_id": {
      "type": "string"
    },
    "status": {
      "$ref": "#/components/schemas/BatchObjectStatusEnum",
      "description": "Possible per-object statuses:\n\n* `PENDING` - This object has not been processed yet\n* `SUCCESS` - This object was successfully POSTed\n* `FAILURE` - This object was not successfully POSTed"
    },
    "response": {
      "$ref": "#/components/schemas/BatchObjectItemResponse"
    }
  },
  "required": [
    "item_id",
    "status"
  ],
  "description": "Individual batch object with status"
}