{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-iot-device-management/refs/heads/main/json-schema/iot-device-management-list-thing-registration-tasks-response-schema.json",
"title": "ListThingRegistrationTasksResponse",
"description": "ListThingRegistrationTasksResponse schema",
"type": "object",
"properties": {
"taskIds": {
"allOf": [
{
"$ref": "#/components/schemas/TaskIdList"
},
{
"description": "A list of bulk thing provisioning task IDs."
}
]
},
"nextToken": {
"allOf": [
{
"$ref": "#/components/schemas/NextToken"
},
{
"description": "The token to use to get the next set of results, or <b>null</b> if there are no additional results."
}
]
}
}
}