{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/_LogsValuesResponse", "title": "_LogsValuesResponse", "type": "object", "properties": { "results": { "type": "array", "items": { "$ref": "#/components/schemas/_LogAttributeValue" }, "description": "Distinct values observed for the requested attribute." }, "refreshing": { "type": "boolean", "description": "Always false \u2014 reserved for future cached-value refresh signalling." } }, "required": [ "refreshing", "results" ] }