RapidAPI · Schema

GatewayInput

API MarketplaceAPI ManagementAPI TestingAPI GatewayAPI DesignEnterprise

Properties

Name Type Description
name string Gateway display name
description string Description of the gateway's purpose
deploymentModel string How the gateway should be deployed
baseUrl string The base URL for the gateway
View JSON Schema on GitHub

JSON Schema

rapidapi-gatewayinput-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GatewayInput",
  "title": "GatewayInput",
  "type": "object",
  "required": [
    "name"
  ],
  "properties": {
    "name": {
      "type": "string",
      "description": "Gateway display name"
    },
    "description": {
      "type": "string",
      "description": "Description of the gateway's purpose"
    },
    "deploymentModel": {
      "type": "string",
      "enum": [
        "cloud",
        "on-premise",
        "hybrid"
      ],
      "description": "How the gateway should be deployed"
    },
    "baseUrl": {
      "type": "string",
      "format": "uri",
      "description": "The base URL for the gateway"
    }
  }
}