Red Hat 3scale · Schema

ApplicationPlan

API GatewayAPI ManagementDeveloper PortalEnterpriseRed Hat

Properties

Name Type Description
id integer
name string
system_name string
state string
approval_required boolean
setup_fee number
cost_per_month number
View JSON Schema on GitHub

JSON Schema

red-hat-3scale-applicationplan-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ApplicationPlan",
  "title": "ApplicationPlan",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer"
    },
    "name": {
      "type": "string"
    },
    "system_name": {
      "type": "string"
    },
    "state": {
      "type": "string",
      "enum": [
        "published",
        "hidden"
      ]
    },
    "approval_required": {
      "type": "boolean"
    },
    "setup_fee": {
      "type": "number"
    },
    "cost_per_month": {
      "type": "number"
    }
  }
}