addedOutput schema / properties / channel_results
Added value: +{
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "channel_type": {
+ "enum": [
+ "email",
+ "webhook",
+ "slack",
+ "dashboard",
+ "agent_run"
+ ],
+ "type": "string"
+ },
+ "error_message": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "outcome": {
+ "enum": [
+ "success",
+ "retry",
+ "dead",
+ "skipped"
+ ],
+ "type": "string"
+ },
+ "status_code": {
+ "anyOf": [
+ {
+ "type": "integer"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ }
+ },
+ "required": [
+ "outcome",
+ "channel_type",
+ "status_code",
+ "error_message"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+}
changedOutput schema / required
Previous value: -[
- "_meta",
- "signal_id",
- "outcome",
- "channel_type",
- "status_code",
- "error_message"
-]New value: +[
+ "_meta",
+ "signal_id",
+ "outcome",
+ "channel_type",
+ "status_code",
+ "error_message",
+ "channel_results"
+]