FlowRunProperties

Properties of a flow run.

Business ApplicationsCopilot StudioDataverseLow-CodeMicrosoftNo-CodePower PagesPower Platform

Properties

Name Type Description
startTime string The timestamp when the flow run started.
endTime ['string', 'null'] The timestamp when the flow run ended. Null if still running.
status string The current status of the flow run.
correlation object Correlation information for the flow run.
trigger object Information about the trigger that initiated the flow run.
View JSON Schema on GitHub

JSON Schema

power-platform-flow-run-properties-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "FlowRunProperties",
  "type": "object",
  "description": "Properties of a flow run.",
  "properties": {
    "startTime": {
      "type": "string",
      "description": "The timestamp when the flow run started."
    },
    "endTime": {
      "type": "['string', 'null']",
      "description": "The timestamp when the flow run ended. Null if still running."
    },
    "status": {
      "type": "string",
      "description": "The current status of the flow run."
    },
    "correlation": {
      "type": "object",
      "description": "Correlation information for the flow run."
    },
    "trigger": {
      "type": "object",
      "description": "Information about the trigger that initiated the flow run."
    }
  }
}