ServiceNow · JSON Structure

Servicenow Change Management Change Task Structure

A task associated with a change request.

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

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

Properties

sys_id number short_description state assigned_to change_request planned_start_date planned_end_date

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

JSON Structure

Raw ↑
{
  "type": "object",
  "description": "A task associated with a change request.",
  "name": "ChangeTask",
  "properties": {
    "sys_id": {
      "type": "string",
      "description": "Unique identifier for the change task."
    },
    "number": {
      "type": "string",
      "description": "The human-readable task number."
    },
    "short_description": {
      "type": "string",
      "description": "A brief summary of the task."
    },
    "state": {
      "type": "string",
      "description": "The current state of the task."
    },
    "assigned_to": {
      "type": "string",
      "description": "The sys_id of the assigned user."
    },
    "change_request": {
      "type": "string",
      "description": "The sys_id of the parent change request."
    },
    "planned_start_date": {
      "type": "datetime",
      "description": "The planned start date for the task."
    },
    "planned_end_date": {
      "type": "datetime",
      "description": "The planned end date for the task."
    }
  },
  "$schema": "https://json-structure.org/draft/2020-12/schema"
}