{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-codeguru-profiler/refs/heads/main/json-structure/amazon-codeguru-profiler-list-profile-times-response-structure.json", "name": "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" ] }