{
"title": "functions.CompiledTask",
"description": "The result of compiling a task expression.\n\nTasks without a `map` field compile to a single task. Tasks with a `map`\nexpression are expanded into multiple tasks, one per integer index from\n0 to the evaluated count.",
"anyOf": [
{
"title": "One",
"description": "A single task (no mapping).",
"$ref": "functions.Task"
},
{
"title": "Many",
"description": "Multiple task instances from mapped execution.",
"type": "array",
"items": {
"$ref": "functions.Task"
}
}
]
}