{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/AccountListResult",
"title": "AccountListResult",
"type": "object",
"description": "The list of cognitive services accounts.",
"properties": {
"value": {
"type": "array",
"items": {
"$ref": "#/components/schemas/Account"
},
"description": "An array of cognitive services accounts.",
"example": []
},
"nextLink": {
"type": "string",
"description": "The link used to get the next page of accounts.",
"example": "example_value"
}
}
}