{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/tomorrow/refs/heads/main/json-structure/insight-condition-structure.json", "name": "InsightCondition", "description": "A single condition that must hold for an insight to fire.", "type": "object", "properties": { "field": { "type": "string", "example": "windSpeed" }, "operator": { "type": "string", "enum": [ "eq", "neq", "gt", "gte", "lt", "lte" ], "example": "gt" }, "value": { "type": "double", "example": 15 } }, "required": [ "field", "operator", "value" ] }