{
  "name": "JwtProxy",
  "plane": "internal",
  "terraformEligible": false,
  "protocol": {
    "kind": "cloudJson",
    "target": "CloudGateway.JwtProxy",
    "service": "gateway"
  },
  "requestBody": "typed",
  "responseBody": "typed",
  "requestSchema": {
    "$schema": "http://json-schema.org/draft-07/schema#",
    "additionalProperties": false,
    "definitions": {
      "ProxyRequest": {
        "additionalProperties": false,
        "properties": {
          "body": {
            "default": null
          },
          "headers": {
            "additionalProperties": {
              "type": "string"
            },
            "default": {},
            "type": "object"
          },
          "method": {
            "type": "string"
          },
          "path": {
            "type": "string"
          },
          "query": {
            "default": null,
            "type": [
              "string",
              "null"
            ]
          }
        },
        "required": [
          "method",
          "path"
        ],
        "type": "object"
      }
    },
    "properties": {
      "accessToken": {
        "type": "string"
      },
      "request": {
        "$ref": "#/definitions/ProxyRequest"
      },
      "tenantId": {
        "type": "string"
      }
    },
    "required": [
      "accessToken",
      "request",
      "tenantId"
    ],
    "title": "JwtProxyRequest",
    "type": "object"
  },
  "responseSchema": {
    "$schema": "http://json-schema.org/draft-07/schema#",
    "properties": {
      "body": {
        "default": null
      },
      "headers": {
        "additionalProperties": {
          "type": "string"
        },
        "default": {},
        "type": "object"
      },
      "statusCode": {
        "format": "uint16",
        "minimum": 0.0,
        "type": "integer"
      }
    },
    "required": [
      "statusCode"
    ],
    "title": "ProxyResponse",
    "type": "object"
  }
}
