{
  "name": "CreateUserPool",
  "plane": "control",
  "terraformEligible": false,
  "protocol": {
    "kind": "rest",
    "method": "POST",
    "path": "/auth/user-pools",
    "query": [],
    "headers": [
      "authorization"
    ],
    "body": true
  },
  "requestBody": "json",
  "responseBody": "json",
  "requestSchema": {
    "$schema": "http://json-schema.org/draft-07/schema#",
    "additionalProperties": false,
    "properties": {
      "name": {
        "type": "string"
      }
    },
    "required": [
      "name"
    ],
    "title": "CreateUserPoolRequest",
    "type": "object"
  },
  "responseSchema": {
    "$schema": "http://json-schema.org/draft-07/schema#",
    "properties": {
      "createdAt": {
        "type": "string"
      },
      "name": {
        "type": "string"
      },
      "poolId": {
        "type": "string"
      },
      "tenantId": {
        "type": "string"
      }
    },
    "required": [
      "createdAt",
      "name",
      "poolId",
      "tenantId"
    ],
    "title": "UserPool",
    "type": "object"
  }
}
