{
  "name": "PoolSignIn",
  "plane": "control",
  "terraformEligible": false,
  "protocol": {
    "kind": "rest",
    "method": "POST",
    "path": "/auth/user-pools/{poolId}/sign-in",
    "query": [],
    "headers": [],
    "body": true
  },
  "requestBody": "json",
  "responseBody": "json",
  "requestSchema": {
    "$schema": "http://json-schema.org/draft-07/schema#",
    "additionalProperties": false,
    "properties": {
      "email": {
        "type": "string"
      },
      "poolId": {
        "type": "string"
      }
    },
    "required": [
      "email",
      "poolId"
    ],
    "title": "PoolSignInRequest",
    "type": "object"
  },
  "responseSchema": {
    "$schema": "http://json-schema.org/draft-07/schema#",
    "properties": {
      "sessionId": {
        "type": [
          "string",
          "null"
        ]
      },
      "success": {
        "type": "boolean"
      }
    },
    "required": [
      "success"
    ],
    "title": "SignInResponse",
    "type": "object"
  }
}
