Red Hat 3scale · Schema

AuthorizeResponse

API GatewayAPI ManagementDeveloper PortalEnterpriseRed Hat

Properties

Name Type Description
status string
plan string Name of the application plan
usage_reports array
View JSON Schema on GitHub

JSON Schema

red-hat-3scale-authorizeresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AuthorizeResponse",
  "title": "AuthorizeResponse",
  "type": "object",
  "properties": {
    "status": {
      "type": "string",
      "enum": [
        "success",
        "failure"
      ]
    },
    "plan": {
      "type": "string",
      "description": "Name of the application plan"
    },
    "usage_reports": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/UsageReport"
      }
    }
  }
}