ServiceNow · Schema

CmdbInstanceSummary

A summary of a CMDB configuration item containing its identifier and display name.

AutomationCloud ServicesDigital WorkflowsEnterprise PlatformIT Service ManagementITSMProcessesT1Workflow AutomationWorkflows

Properties

Name Type Description
sys_id string Unique identifier for the configuration item.
name string The display name of the configuration item.
View JSON Schema on GitHub

JSON Schema

servicenow-cmdb-instance-cmdb-instance-summary-schema.json Raw ↑
{
  "type": "object",
  "description": "A summary of a CMDB configuration item containing its identifier and display name.",
  "properties": {
    "sys_id": {
      "type": "string",
      "description": "Unique identifier for the configuration item.",
      "example": "500123"
    },
    "name": {
      "type": "string",
      "description": "The display name of the configuration item.",
      "example": "Example Title"
    }
  },
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "CmdbInstanceSummary"
}