{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-iot-core/refs/heads/main/json-schema/iot-core-list-things-in-thing-group-response-schema.json", "title": "ListThingsInThingGroupResponse", "description": "ListThingsInThingGroupResponse schema", "type": "object", "properties": { "things": { "allOf": [ { "$ref": "#/components/schemas/ThingNameList" }, { "description": "The things in the specified thing group." } ] }, "nextToken": { "allOf": [ { "$ref": "#/components/schemas/NextToken" }, { "description": "The token to use to get the next set of results, or null if there are no additional results." } ] } } }