Red Hat 3scale · Schema

CreateApplicationRequest

API GatewayAPI ManagementDeveloper PortalEnterpriseRed Hat

Properties

Name Type Description
plan_id integer The ID of the application plan to subscribe to
name string Name of the application
description string
View JSON Schema on GitHub

JSON Schema

red-hat-3scale-createapplicationrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateApplicationRequest",
  "title": "CreateApplicationRequest",
  "type": "object",
  "required": [
    "plan_id",
    "name"
  ],
  "properties": {
    "plan_id": {
      "type": "integer",
      "description": "The ID of the application plan to subscribe to"
    },
    "name": {
      "type": "string",
      "description": "Name of the application"
    },
    "description": {
      "type": "string"
    }
  }
}