ServiceNow · Schema

NoteInput

AutomationCloud ServicesDigital WorkflowsEnterprise PlatformIT Service ManagementITSMProcessesT1Workflow AutomationWorkflows

Properties

Name Type Description
text string Note text
@type string Type of note (determines whether recorded in Work notes or Additional comments field)
View JSON Schema on GitHub

JSON Schema

trouble-ticket-note-input-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "text": {
      "type": "string",
      "description": "Note text",
      "example": "example_value"
    },
    "@type": {
      "type": "string",
      "description": "Type of note (determines whether recorded in Work notes or Additional comments field)",
      "example": "comments",
      "enum": [
        "comments",
        "work_notes"
      ]
    }
  },
  "required": [
    "text",
    "@type"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "NoteInput"
}