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