{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-inspector/refs/heads/main/json-schema/inspector-list-members-response-schema.json",
"title": "ListMembersResponse",
"description": "ListMembersResponse schema",
"type": "object",
"properties": {
"members": {
"allOf": [
{
"$ref": "#/components/schemas/MemberList"
},
{
"description": "An object that contains details for each member account."
}
]
},
"nextToken": {
"allOf": [
{
"$ref": "#/components/schemas/NextToken"
},
{
"description": "The pagination parameter to be used on the next list operation to retrieve more items."
}
]
}
}
}