ServiceNow · Schema

RelatedEntityInput

AutomationCloud ServicesDigital WorkflowsEnterprise PlatformIT Service ManagementITSMProcessesT1Workflow AutomationWorkflows

Properties

Name Type Description
id string Sys_id of the impacted item or service
@referredType string Type of item or service
View JSON Schema on GitHub

JSON Schema

trouble-ticket-related-entity-input-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Sys_id of the impacted item or service",
      "example": "abc123"
    },
    "@referredType": {
      "type": "string",
      "description": "Type of item or service",
      "example": "asset",
      "enum": [
        "asset",
        "product",
        "product_inventory",
        "cmdb_ci",
        "cmdb_ci_service"
      ]
    }
  },
  "required": [
    "id",
    "@referredType"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "RelatedEntityInput"
}