FlowRun

A record of a Power Automate flow run execution.

Business ApplicationsCopilot StudioDataverseLow-CodeMicrosoftNo-CodePower PagesPower Platform

Properties

Name Type Description
name string The unique identifier of the flow run.
id string The fully qualified resource ID of the flow run.
type string The resource type.
properties object
View JSON Schema on GitHub

JSON Schema

power-platform-flowrun-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FlowRun",
  "title": "FlowRun",
  "type": "object",
  "description": "A record of a Power Automate flow run execution.",
  "properties": {
    "name": {
      "type": "string",
      "description": "The unique identifier of the flow run.",
      "example": "Example Title"
    },
    "id": {
      "type": "string",
      "description": "The fully qualified resource ID of the flow run.",
      "example": "abc123"
    },
    "type": {
      "type": "string",
      "description": "The resource type.",
      "examples": [
        "Microsoft.ProcessSimple/environments/flows/runs"
      ]
    },
    "properties": {
      "$ref": "#/components/schemas/FlowRunProperties"
    }
  }
}