create_story_dependency
Establish dependencies between ServiceNow stories to manage workflow relationships and ensure proper task sequencing.
Instructions
Create a dependency between two stories in ServiceNow
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| dependent_story | Yes | Sys_id of the dependent story is required | |
| prerequisite_story | Yes | Sys_id that this story depends on is required |
Input Schema (JSON Schema)
{
"properties": {
"dependent_story": {
"description": "Sys_id of the dependent story is required",
"title": "Dependent Story",
"type": "string"
},
"prerequisite_story": {
"description": "Sys_id that this story depends on is required",
"title": "Prerequisite Story",
"type": "string"
}
},
"required": [
"dependent_story",
"prerequisite_story"
],
"type": "object"
}