ServiceNow · Schema

RelatedPartyInput

AutomationCloud ServicesDigital WorkflowsEnterprise PlatformIT Service ManagementITSMProcessesT1Workflow AutomationWorkflows

Properties

Name Type Description
id string Sys_id of the related party
@referredType string Type of related party: - customer: Company or account for the ticket - customer_contact: Caller or contact for the ticket
View JSON Schema on GitHub

JSON Schema

trouble-ticket-related-party-input-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Sys_id of the related party",
      "example": "abc123"
    },
    "@referredType": {
      "type": "string",
      "description": "Type of related party:\n- customer: Company or account for the ticket\n- customer_contact: Caller or contact for the ticket\n",
      "example": "customer",
      "enum": [
        "customer",
        "customer_contact"
      ]
    }
  },
  "required": [
    "id",
    "@referredType"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "RelatedPartyInput"
}