create_changeset
Generate and manage a new changeset in ServiceNow by specifying its name, application, and optional details like description and developer. Simplifies tracking and organizing system updates.
Instructions
Create a new changeset in ServiceNow
Input Schema
Name | Required | Description | Default |
---|---|---|---|
application | Yes | Application the changeset belongs to | |
description | No | Description of the changeset | |
developer | No | Developer responsible for the changeset | |
name | Yes | Name of the changeset |
Input Schema (JSON Schema)
{
"description": "Parameters for creating a changeset.",
"properties": {
"application": {
"description": "Application the changeset belongs to",
"title": "Application",
"type": "string"
},
"description": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Description of the changeset",
"title": "Description"
},
"developer": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Developer responsible for the changeset",
"title": "Developer"
},
"name": {
"description": "Name of the changeset",
"title": "Name",
"type": "string"
}
},
"required": [
"name",
"application"
],
"title": "CreateChangesetParams",
"type": "object"
}