{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ActionExecutionResult", "title": "ActionExecutionResult", "type": "object", "description": "Captures the results of a single action being executed.", "additionalProperties": false, "properties": { "action_name": { "type": "string", "description": "The name of the action that was executed.", "default": "my-action" }, "error": { "$ref": "#/components/schemas/ActionError" }, "started_at": { "type": "string", "description": "The time when the action was started.", "default": "2021-01-01T00:00:00.000Z", "format": "date-time" }, "ended_at": { "type": "string", "description": "The time when the action finished executing.", "default": "2021-01-01T00:00:00.000Z", "format": "date-time" } } }