{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ListProjectsResponse",
"title": "ListProjectsResponse",
"type": "object",
"description": "Response message for listing projects.",
"properties": {
"projects": {
"type": "array",
"description": "The list of projects under the specified parent.",
"items": {
"$ref": "#/components/schemas/Project"
},
"example": []
},
"nextPageToken": {
"type": "string",
"description": "Pagination token to retrieve the next page of results. Empty if there are no more results.",
"example": "example_value"
}
}
}