objectiveai-sdk 2.0.7

ObjectiveAI SDK, definitions, and utilities
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
  "title": "error.ResponseError",
  "description": "An error returned by the ObjectiveAI API.\n\nThis struct represents an API error response containing an HTTP status\ncode and a message. The message can be any JSON value, allowing for\nboth simple string errors and structured error objects.",
  "type": "object",
  "properties": {
    "code": {
      "description": "The HTTP status code of the error response.",
      "type": "integer",
      "minimum": 0,
      "maximum": 65535
    },
    "message": {
      "description": "The error message or details as a JSON value."
    }
  }
}