ImportRestApiRequest

A POST request to import an API to API Gateway using an input of an API definition file.

APIs.ioEngineeringPlatform

Properties

Name Type Description
body object
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-importrestapirequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ImportRestApiRequest",
  "title": "ImportRestApiRequest",
  "type": "object",
  "required": [
    "body"
  ],
  "properties": {
    "body": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Blob"
        },
        {
          "description": "The POST request body containing external API definitions. Currently, only OpenAPI definition JSON/YAML files are supported. The maximum size of the API definition file is 6MB."
        }
      ]
    }
  },
  "description": "A POST request to import an API to API Gateway using an input of an API definition file."
}