{
"$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-groups-response-schema.json",
"title": "ListThingGroupsResponse",
"description": "ListThingGroupsResponse schema",
"type": "object",
"properties": {
"thingGroups": {
"allOf": [
{
"$ref": "#/components/schemas/ThingGroupNameAndArnList"
},
{
"description": "The thing groups."
}
]
},
"nextToken": {
"allOf": [
{
"$ref": "#/components/schemas/NextToken"
},
{
"description": "The token to use to get the next set of results. Will not be returned if operation has returned all results."
}
]
}
}
}