honeycomb · Schema

BatchEventResponse

Properties

Name Type Description
status integer The HTTP status code for this individual event. 202 indicates successful queuing for processing.
error string An error message if the event failed processing. Possible values include 'Request body should not be empty', 'Event has too many columns', and 'Request body is malformed and cannot be read'.
View JSON Schema on GitHub

JSON Schema

honeycomb-batcheventresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BatchEventResponse",
  "title": "BatchEventResponse",
  "type": "object",
  "properties": {
    "status": {
      "type": "integer",
      "description": "The HTTP status code for this individual event. 202 indicates successful queuing for processing."
    },
    "error": {
      "type": "string",
      "description": "An error message if the event failed processing. Possible values include 'Request body should not be empty', 'Event has too many columns', and 'Request body is malformed and cannot be read'."
    }
  }
}