{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/TaskTemplateRecipeCompact",
"title": "TaskTemplateRecipeCompact",
"type": "object",
"properties": {
"name": {
"description": "Name of the task that will be created from this template.",
"type": "string",
"example": "Bug Report"
},
"task_resource_subtype": {
"type": "string",
"description": "The subtype of the task that will be created from this template.",
"enum": [
"default_task",
"milestone_task",
"approval_task"
],
"example": "default_task"
}
}
}