{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/KeyListResult",
"title": "KeyListResult",
"type": "object",
"description": "The key list result.",
"properties": {
"value": {
"type": "array",
"readOnly": true,
"items": {
"$ref": "#/components/schemas/KeyItem"
},
"description": "A list of keys.",
"example": []
},
"nextLink": {
"type": "string",
"readOnly": true,
"description": "The URL to get the next set of keys.",
"example": "example_value"
}
}
}