{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/_LogsAttributesResponse", "title": "_LogsAttributesResponse", "type": "object", "properties": { "results": { "type": "array", "items": { "$ref": "#/components/schemas/_LogAttributeEntry" }, "description": "Available attribute keys matching the filters." }, "count": { "type": "integer", "description": "Total attribute keys matched (not paginated)." } }, "required": [ "count", "results" ] }