{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CreateGatewayRequest", "title": "CreateGatewayRequest", "description": "The request schema for the create gateway request.", "type": "object", "properties": { "name": { "$ref": "#/components/schemas/GatewayName" }, "description": { "$ref": "#/components/schemas/GatewayDescription" }, "min_runtime_version": { "$ref": "#/components/schemas/MinRuntimeVersion" }, "labels": { "$ref": "#/components/schemas/Labels" } }, "additionalProperties": false, "required": [ "name" ] }