{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-managed-grafana/refs/heads/main/json-schema/amazon-managed-grafana-list-permissions-response-schema.json",
"title": "ListPermissionsResponse",
"description": "ListPermissionsResponse schema from Amazon Managed Grafana API",
"type": "object",
"properties": {
"nextToken": {
"allOf": [
{
"$ref": "#/components/schemas/PaginationToken"
},
{
"description": "The token to use in a subsequent <code>ListPermissions</code> operation to return the next set of results."
}
]
},
"permissions": {
"allOf": [
{
"$ref": "#/components/schemas/PermissionEntryList"
},
{
"description": "The permissions returned by the operation."
}
]
}
},
"required": [
"permissions"
]
}