ServiceNow · Schema

OrderResult

The result of a submitted catalog order.

AutomationCloud ServicesDigital WorkflowsEnterprise PlatformIT Service ManagementITSMProcessesT1Workflow AutomationWorkflows

Properties

Name Type Description
request_number string The generated request number.
request_id string The sys_id of the request record.
table string The table name where the request is stored.
View JSON Schema on GitHub

JSON Schema

servicenow-service-catalog-order-result-schema.json Raw ↑
{
  "type": "object",
  "description": "The result of a submitted catalog order.",
  "properties": {
    "request_number": {
      "type": "string",
      "description": "The generated request number.",
      "example": "example_value"
    },
    "request_id": {
      "type": "string",
      "description": "The sys_id of the request record.",
      "example": "500123"
    },
    "table": {
      "type": "string",
      "description": "The table name where the request is stored.",
      "example": "example_value"
    }
  },
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "OrderResult"
}