{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-codestar/refs/heads/main/json-schema/codestar-list-team-members-result-schema.json", "title": "ListTeamMembersResult", "description": "ListTeamMembersResult schema from AWS CodeStar API", "type": "object", "properties": { "teamMembers": { "allOf": [ { "$ref": "#/components/schemas/TeamMemberResult" }, { "description": "A list of team member objects for the project." } ] }, "nextToken": { "allOf": [ { "$ref": "#/components/schemas/PaginationToken" }, { "description": "The continuation token to use when requesting the next set of results, if there are more results to be returned." } ] } }, "required": [ "teamMembers" ] }