work_create_iterations
Generate iterations in Azure DevOps projects by defining names, start dates, and finish dates. Integrates with PAT authentication for streamlined project planning.
Instructions
Create new iterations in a specified Azure DevOps project.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
iterations | Yes | An array of iterations to create. Each iteration must have a name and can optionally have start and finish dates in ISO format. | |
project | Yes | The name or ID of the Azure DevOps project. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"iterations": {
"description": "An array of iterations to create. Each iteration must have a name and can optionally have start and finish dates in ISO format.",
"items": {
"additionalProperties": false,
"properties": {
"finishDate": {
"description": "The finish date of the iteration in ISO format (e.g., '2023-01-31T23:59:59Z'). Optional.",
"type": "string"
},
"iterationName": {
"description": "The name of the iteration to create.",
"type": "string"
},
"startDate": {
"description": "The start date of the iteration in ISO format (e.g., '2023-01-01T00:00:00Z'). Optional.",
"type": "string"
}
},
"required": [
"iterationName"
],
"type": "object"
},
"type": "array"
},
"project": {
"description": "The name or ID of the Azure DevOps project.",
"type": "string"
}
},
"required": [
"project",
"iterations"
],
"type": "object"
}