Red Hat 3scale · Schema

AuthorizeErrorResponse

API GatewayAPI ManagementDeveloper PortalEnterpriseRed Hat

Properties

Name Type Description
status string
code string Error code (e.g. user.exceeded_limits)
message string Human-readable error message
View JSON Schema on GitHub

JSON Schema

red-hat-3scale-authorizeerrorresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AuthorizeErrorResponse",
  "title": "AuthorizeErrorResponse",
  "type": "object",
  "properties": {
    "status": {
      "type": "string",
      "enum": [
        "failure"
      ]
    },
    "code": {
      "type": "string",
      "description": "Error code (e.g. user.exceeded_limits)"
    },
    "message": {
      "type": "string",
      "description": "Human-readable error message"
    }
  }
}