{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/LogAttributeResult", "title": "LogAttributeResult", "additionalProperties": false, "properties": { "matchedOn": { "description": "Whether this row matched the search by attribute key or by attribute value.", "allOf": [ { "$ref": "#/components/schemas/MatchedOn" } ] }, "matchedValue": { "default": null, "description": "Sample value that matched the search \u2014 only set when matchedOn is 'value'.", "title": "Matchedvalue", "type": "string", "nullable": true }, "name": { "title": "Name", "type": "string" }, "propertyFilterType": { "description": "Either 'log_attribute' or 'log_resource_attribute'.", "title": "Propertyfiltertype", "type": "string" } }, "required": [ "matchedOn", "name", "propertyFilterType" ], "type": "object" }