create_epic
Create a new epic in ServiceNow to organize and track large bodies of work, specifying details like description, priority, state, assignment group, and work notes.
Instructions
Create a new epic in ServiceNow
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| assigned_to | No | User assigned to the epic | |
| assignment_group | No | Group assigned to the epic | |
| description | No | Detailed description of the epic | |
| priority | No | Priority of epic (1 is Critical, 2 is High, 3 is Moderate, 4 is Low, 5 is Planning) | |
| short_description | Yes | Short description of the epic | |
| state | No | State of story (-6 is Draft,1 is Ready,2 is Work in progress, 3 is Complete, 4 is Cancelled) | |
| work_notes | No | Work notes to add to the epic. Used for adding notes and comments to an epic |
Input Schema (JSON Schema)
{
"properties": {
"assigned_to": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "User assigned to the epic",
"title": "Assigned To"
},
"assignment_group": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Group assigned to the epic",
"title": "Assignment Group"
},
"description": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Detailed description of the epic",
"title": "Description"
},
"priority": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Priority of epic (1 is Critical, 2 is High, 3 is Moderate, 4 is Low, 5 is Planning)",
"title": "Priority"
},
"short_description": {
"description": "Short description of the epic",
"title": "Short Description",
"type": "string"
},
"state": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "State of story (-6 is Draft,1 is Ready,2 is Work in progress, 3 is Complete, 4 is Cancelled)",
"title": "State"
},
"work_notes": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Work notes to add to the epic. Used for adding notes and comments to an epic",
"title": "Work Notes"
}
},
"required": [
"short_description"
],
"type": "object"
}