Claude · Schema

MessageBatchList

Paginated list of message batches.

Artificial IntelligenceChatbotConversational AIGenerative AILarge Language ModelsMachine LearningNatural Language Processing

Properties

Name Type Description
data array
has_more boolean Whether there are more results available.
first_id string ID of the first item. Use as before_id for the previous page.
last_id string ID of the last item. Use as after_id for the next page.
View JSON Schema on GitHub

JSON Schema

claude-messages-message-batch-list-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "MessageBatchList",
  "type": "object",
  "description": "Paginated list of message batches.",
  "properties": {
    "data": {
      "type": "array"
    },
    "has_more": {
      "type": "boolean",
      "description": "Whether there are more results available."
    },
    "first_id": {
      "type": "string",
      "description": "ID of the first item. Use as before_id for the previous page."
    },
    "last_id": {
      "type": "string",
      "description": "ID of the last item. Use as after_id for the next page."
    }
  }
}