Union Pacific · Schema

CancelRequest

Request body for cancelling a request

Fortune 500FreightRailroadsShippingTrainsSupply ChainLogistics

Properties

Name Type Description
requestId string ID of the request to cancel
reason string Reason for cancellation
View JSON Schema on GitHub

JSON Schema

union-pacific-cancel-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/union-pacific/refs/heads/main/json-schema/union-pacific-cancel-request-schema.json",
  "title": "CancelRequest",
  "description": "Request body for cancelling a request",
  "type": "object",
  "required": [
    "requestId"
  ],
  "properties": {
    "requestId": {
      "type": "string",
      "description": "ID of the request to cancel"
    },
    "reason": {
      "type": "string",
      "description": "Reason for cancellation"
    }
  }
}