{
"title": "functions.InlineTasksProfile",
"description": "An inline tasks-based profile definition without metadata.",
"type": "object",
"properties": {
"tasks": {
"description": "Configuration for each task in the corresponding Function.",
"type": "array",
"items": {
"$ref": "functions.TaskProfile"
}
},
"weights": {
"description": "Optional weights for each Task in the corresponding Function.\nIf `None`, uniform weights are used.",
"anyOf": [
{
"$ref": "Weights"
},
{
"type": "null"
}
],
"omitempty": true
}
}
}