Amazon API Gateway · Schema

CreateModelRequest

GatewayHTTP APIREST APIServerlessWebSocket

Properties

Name Type Description
name string
description string
schema string
contentType string
View JSON Schema on GitHub

JSON Schema

amazon-api-gateway-createmodelrequest-schema.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "CreateModelRequest",
  "type": "object",
  "properties": {
    "name": {
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "schema": {
      "type": "string"
    },
    "contentType": {
      "type": "string"
    }
  },
  "required": [
    "name",
    "contentType"
  ]
}