{
"$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."
}
}
}