{ "$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", "items": { "$ref": "#/components/schemas/KeyItem" }, "description": "A list of keys.", "readOnly": true, "example": [] }, "nextLink": { "type": "string", "description": "The URL to get the next set of keys.", "readOnly": true, "example": "example_value" } } }