changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "executions": {
+ "description": "Recent workflow executions, most recent first.",
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "billed": {
+ "description": "The billing flag. True only for a user-fault succeeded, failed, or timed-out execution.",
+ "type": "boolean"
+ },
+ "created_at": {
+ "type": "string"
+ },
+ "credits": {
+ "type": [
+ "null",
+ "integer"
+ ]
+ },
+ "duration_ms": {
+ "type": [
+ "null",
+ "integer"
+ ]
+ },
+ "ended_at": {
+ "type": [
+ "null",
+ "string"
+ ]
+ },
+ "error": {
+ "description": "Arbitrary JSON owned by the producing engine."
+ },
+ "fault": {
+ "description": "Why a non-succeeded execution ended. User means the workflow's own steps or limits. A platform fault is never billed. This field is null when the execution succeeded.",
+ "type": [
+ "null",
+ "string"
+ ]
+ },
+ "id": {
+ "type": "string"
+ },
+ "started_at": {
+ "type": [
+ "null",
+ "string"
+ ]
+ },
+ "status": {
+ "type": "string"
+ },
+ "step_stats": {
+ "description": "Arbitrary JSON owned by the producing engine."
+ },
+ "steps": {
+ "description": "Arbitrary JSON owned by the producing engine."
+ },
+ "trigger_source": {
+ "type": "string"
+ },
+ "workflow_id": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "id",
+ "workflow_id",
+ "status",
+ "fault",
+ "billed",
+ "trigger_source",
+ "started_at",
+ "ended_at",
+ "duration_ms",
+ "credits",
+ "created_at"
+ ],
+ "type": "object"
+ },
+ "type": [
+ "null",
+ "array"
+ ]
+ }
+ },
+ "required": [
+ "executions"
+ ],
+ "type": "object"
+}