brevo · Schema

ErrorResponse

Properties

Name Type Description
code string Error code identifying the type of error.
message string Human-readable description of the error.
View JSON Schema on GitHub

JSON Schema

brevo-errorresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ErrorResponse",
  "title": "ErrorResponse",
  "type": "object",
  "properties": {
    "code": {
      "type": "string",
      "description": "Error code identifying the type of error."
    },
    "message": {
      "type": "string",
      "description": "Human-readable description of the error."
    }
  }
}