{ "$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-principal-things-response-schema.json", "title": "ListPrincipalThingsResponse", "description": "The output from the ListPrincipalThings operation.", "type": "object", "properties": { "things": { "allOf": [ { "$ref": "#/components/schemas/ThingNameList" }, { "description": "The things." } ] }, "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." } ] } } }