{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-iot-twinmaker/refs/heads/main/json-schema/iot-twinmaker-list-sync-resources-request-schema.json", "title": "ListSyncResourcesRequest", "description": "ListSyncResourcesRequest schema", "type": "object", "properties": { "filters": { "allOf": [ { "$ref": "#/components/schemas/SyncResourceFilters" }, { "description": "
A list of objects that filter the request.
The following filter combinations are supported:
Filter with state
Filter with ResourceType and ResourceId
Filter with ResourceType and ExternalId
The maximum number of results to return at one time. The default is 50.
Valid Range: Minimum value of 0. Maximum value of 200.
" } ] }, "nextToken": { "allOf": [ { "$ref": "#/components/schemas/NextToken" }, { "description": "The string that specifies the next page of results." } ] } } }