{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-msk/refs/heads/main/json-schema/msk-api-list-clusters-response-schema.json", "title": "ListClustersResponse", "description": "ListClustersResponse schema from Amazon MSK API", "type": "object", "properties": { "ClusterInfoList": { "allOf": [ { "$ref": "#/components/schemas/__listOfClusterInfo" }, { "xml": { "name": "clusterInfoList" }, "description": "\n
Information on each of the MSK clusters in the response.
" } ] }, "NextToken": { "allOf": [ { "$ref": "#/components/schemas/__string" }, { "xml": { "name": "nextToken" }, "description": "\nThe paginated results marker. When the result of a ListClusters operation is truncated, the call returns NextToken in the response. \n To get another batch of clusters, provide this token in your next request.
" } ] } } }