{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-detective/refs/heads/main/json-schema/amazon-detective-list-invitations-request-schema.json",
"title": "ListInvitationsRequest",
"description": "Request to list invitations",
"type": "object",
"properties": {
"NextToken": {
"type": "string",
"description": "The pagination token for the next page of results.",
"example": "abc123token"
},
"MaxResults": {
"type": "integer",
"description": "The maximum number of invitations to return.",
"example": 100
}
}
}