{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/EventOddsRatioSerialized", "title": "EventOddsRatioSerialized", "additionalProperties": false, "properties": { "correlation_type": { "$ref": "#/components/schemas/CorrelationType" }, "event": { "$ref": "#/components/schemas/EventDefinition" }, "failure_count": { "title": "Failure Count", "type": "integer" }, "odds_ratio": { "title": "Odds Ratio", "type": "number" }, "success_count": { "title": "Success Count", "type": "integer" } }, "required": [ "correlation_type", "event", "failure_count", "odds_ratio", "success_count" ], "type": "object" }