create_scrum_task
Create a new scrum task in ServiceNow by specifying the story, description, priority, hours, and assignment details to track agile development work items.
Instructions
Create a new scrum task in ServiceNow
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| assigned_to | No | User assigned to the scrum task | |
| assignment_group | No | Group assigned to the scrum task | |
| description | No | Detailed description of the scrum task | |
| hours | No | Actual Hours for the scrum task | |
| planned_hours | No | Planned hours for the scrum task | |
| priority | No | Priority of scrum task (1 is Critical, 2 is High, 3 is Moderate, 4 is Low) | |
| remaining_hours | No | Remaining hours for the scrum task | |
| short_description | Yes | Short description of the scrum task | |
| state | No | State of scrum task (-6 is Draft,1 is Ready, 2 is Work in progress, 3 is Complete, 4 is Cancelled) | |
| story | Yes | Short description of the story. It requires the System ID of the story. | |
| type | No | Type of scrum task (1 is Analysis, 2 is Coding, 3 is Documentation, 4 is Testing) | |
| work_notes | No | Work notes to add to the scrum task |
Input Schema (JSON Schema)
{
"properties": {
"assigned_to": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "User assigned to the scrum task",
"title": "Assigned To"
},
"assignment_group": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Group assigned to the scrum task",
"title": "Assignment Group"
},
"description": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Detailed description of the scrum task",
"title": "Description"
},
"hours": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"description": "Actual Hours for the scrum task",
"title": "Hours"
},
"planned_hours": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"description": "Planned hours for the scrum task",
"title": "Planned Hours"
},
"priority": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Priority of scrum task (1 is Critical, 2 is High, 3 is Moderate, 4 is Low)",
"title": "Priority"
},
"remaining_hours": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"description": "Remaining hours for the scrum task",
"title": "Remaining Hours"
},
"short_description": {
"description": "Short description of the scrum task",
"title": "Short Description",
"type": "string"
},
"state": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "State of scrum task (-6 is Draft,1 is Ready, 2 is Work in progress, 3 is Complete, 4 is Cancelled)",
"title": "State"
},
"story": {
"description": "Short description of the story. It requires the System ID of the story.",
"title": "Story",
"type": "string"
},
"type": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Type of scrum task (1 is Analysis, 2 is Coding, 3 is Documentation, 4 is Testing)",
"title": "Type"
},
"work_notes": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Work notes to add to the scrum task",
"title": "Work Notes"
}
},
"required": [
"story",
"short_description"
],
"type": "object"
}