{
  "name": "ListAppClients",
  "plane": "control",
  "terraformEligible": false,
  "protocol": {
    "kind": "rest",
    "method": "GET",
    "path": "/auth/user-pools/{poolId}/clients",
    "query": [],
    "headers": [
      "authorization"
    ],
    "body": false
  },
  "requestBody": "explicitlyEmpty",
  "responseBody": "json",
  "requestSchema": {
    "$schema": "http://json-schema.org/draft-07/schema#",
    "additionalProperties": false,
    "properties": {
      "poolId": {
        "type": "string"
      }
    },
    "required": [
      "poolId"
    ],
    "title": "ListAppClientsRequest",
    "type": "object"
  },
  "responseSchema": {
    "$schema": "http://json-schema.org/draft-07/schema#",
    "definitions": {
      "AppClient": {
        "properties": {
          "callbackUrls": {
            "items": {
              "type": "string"
            },
            "type": "array"
          },
          "clientId": {
            "type": "string"
          },
          "name": {
            "type": "string"
          },
          "poolId": {
            "type": "string"
          }
        },
        "required": [
          "callbackUrls",
          "clientId",
          "name",
          "poolId"
        ],
        "type": "object"
      }
    },
    "properties": {
      "clients": {
        "items": {
          "$ref": "#/definitions/AppClient"
        },
        "type": "array"
      }
    },
    "required": [
      "clients"
    ],
    "title": "ListAppClientsResponse",
    "type": "object"
  }
}
