changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
+ "additionalProperties": {},
+ "properties": {
+ "creditsCharged": {
+ "description": "Credits spent by this call",
+ "type": "number"
+ },
+ "durationMs": {
+ "type": "number"
+ },
+ "name": {
+ "type": "string"
+ },
+ "ok": {
+ "description": "Whether the run completed",
+ "type": "boolean"
+ },
+ "output": {
+ "additionalProperties": {},
+ "description": "The final output of the workflow",
+ "properties": {},
+ "type": "object"
+ },
+ "result": {
+ "description": "The result, when it is not an object"
+ },
+ "runId": {
+ "type": "string"
+ },
+ "steps": {
+ "description": "What each step produced",
+ "items": {},
+ "type": "array"
+ },
+ "stepsDefined": {
+ "type": "number"
+ },
+ "stepsRun": {
+ "type": "number"
+ },
+ "workflowId": {
+ "type": "string"
+ }
+ },
+ "type": "object"
+}