list_story_dependencies
Retrieve story dependencies from ServiceNow to identify relationships between stories, supporting dependency management and project planning.
Instructions
List story dependencies from ServiceNow
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| dependent_story | No | Sys_id of the dependent story is required | |
| limit | No | Maximum number of records to return | |
| offset | No | Offset to start from | |
| prerequisite_story | No | Sys_id that this story depends on is required | |
| query | No | Additional query string |
Input Schema (JSON Schema)
{
"properties": {
"dependent_story": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Sys_id of the dependent story is required",
"title": "Dependent Story"
},
"limit": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": 10,
"description": "Maximum number of records to return",
"title": "Limit"
},
"offset": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": 0,
"description": "Offset to start from",
"title": "Offset"
},
"prerequisite_story": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Sys_id that this story depends on is required",
"title": "Prerequisite Story"
},
"query": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Additional query string",
"title": "Query"
}
},
"type": "object"
}