{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-cognito/refs/heads/main/json-schema/user-pools-start-user-import-job-request-schema.json",
"title": "StartUserImportJobRequest",
"description": "Represents the request to start the user import job.",
"type": "object",
"properties": {
"UserPoolId": {
"allOf": [
{
"$ref": "#/components/schemas/UserPoolIdType"
},
{
"description": "The user pool ID for the user pool that the users are being imported into."
}
]
},
"JobId": {
"allOf": [
{
"$ref": "#/components/schemas/UserImportJobIdType"
},
{
"description": "The job ID for the user import job."
}
]
}
},
"required": [
"UserPoolId",
"JobId"
]
}