{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/MetricTrigger", "title": "MetricTrigger", "type": "object", "properties": { "type": { "type": "string", "enum": [ "metric" ] }, "id": { "type": "string", "nullable": true }, "trigger_filter": { "$ref": "#/components/schemas/MetricPropertyConditionFilter", "nullable": true } }, "required": [ "type" ] }