{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Anomaly", "title": "Anomaly", "type": "object", "properties": { "id": { "type": "string", "format": "uuid" }, "type": { "type": "string" }, "severity": { "type": "string", "enum": [ "critical", "warning", "info" ] }, "role": { "type": "string" }, "anomaly_type": { "type": "string" }, "expected": { "type": "string" }, "actual": { "type": "string" }, "identity": { "type": "object" } } }