ServiceNow · JSON Structure

Servicenow Change Management Change Task Input Structure

Fields for creating a change task.

Type: object Properties: 6
AutomationCloud ServicesDigital WorkflowsEnterprise PlatformIT Service ManagementITSMProcessesT1Workflow AutomationWorkflows

ChangeTaskInput is a JSON Structure definition published by ServiceNow, describing 6 properties. It conforms to the https://json-structure.org/draft/2020-12/schema meta-schema.

Properties

short_description description assigned_to assignment_group planned_start_date planned_end_date

Meta-schema: https://json-structure.org/draft/2020-12/schema

JSON Structure

Raw ↑
{
  "type": "object",
  "description": "Fields for creating a change task.",
  "name": "ChangeTaskInput",
  "properties": {
    "short_description": {
      "type": "string",
      "description": "A brief summary of the task."
    },
    "description": {
      "type": "string",
      "description": "A detailed description of the task."
    },
    "assigned_to": {
      "type": "string",
      "description": "The sys_id of the assigned user."
    },
    "assignment_group": {
      "type": "string",
      "description": "The sys_id of the assignment group."
    },
    "planned_start_date": {
      "type": "datetime",
      "description": "The planned start date."
    },
    "planned_end_date": {
      "type": "datetime",
      "description": "The planned end date."
    }
  },
  "$schema": "https://json-structure.org/draft/2020-12/schema"
}