{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ListTeamMembersResponse", "title": "ListTeamMembersResponse", "type": "object", "properties": { "data": { "type": "array", "items": { "$ref": "#/components/schemas/TeamMember" }, "description": "List of team members." }, "took": { "type": "number", "description": "Time taken in seconds." }, "requestId": { "type": "string", "description": "Unique identifier for the request." } } }