{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-codeguru-profiler/refs/heads/main/json-schema/amazon-codeguru-profiler-list-profile-times-response-schema.json", "title": "ListProfileTimesResponse", "description": "The structure representing the listProfileTimesResponse.", "type": "object", "properties": { "nextToken": { "allOf": [ { "$ref": "#/components/schemas/PaginationToken" }, { "description": "The nextToken value to include in a future ListProfileTimes request. When the results of a ListProfileTimes request exceed maxResults, this value can be used to retrieve the next page of results. This value is null when there are no more results to return. " } ] }, "profileTimes": { "allOf": [ { "$ref": "#/components/schemas/ProfileTimes" }, { "description": "The list of start times of the available profiles for the aggregation period in the specified time range. " } ] } }, "required": [ "profileTimes" ] }