Oracle Transportation Management · Schema
Oracle OTM Shipment Order
Schema for an Oracle Transportation Management shipment order (order to move), representing a request to transport goods from one location to another.
LogisticsTransportationFreightSupply ChainShippingGlobal TradeOracle
Properties
| Name | Type | Description |
|---|---|---|
| shipmentOrderGid | string | Global identifier in domain.xid format |
| shipmentOrderXid | string | User-defined order identifier |
| status | string | I=Initial, OB=Open-Booked, PL=Planned, DP=Dispatched, IT=InTransit, DL=Delivered, CL=Closed |
| sourceLocationGid | string | Origin location GID |
| destLocationGid | string | Destination location GID |
| earlyPickupDate | string | Earliest allowable pickup date |
| latePickupDate | string | Latest allowable pickup date |
| earlyDeliveryDate | string | |
| lateDeliveryDate | string | Required delivery date |
| transportationMode | string | |
| totalWeight | number | Total shipment weight |
| totalWeightUom | string | Weight unit of measure |
| totalVolume | number | |
| totalVolumeUom | string | |
| lines | array | Shipment order line items |
| insertDate | string | |
| lastUpdateDate | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://api-evangelist.github.io/oracle-transportation-management/json-schema/oracle-otm-shipment-order-schema.json",
"title": "Oracle OTM Shipment Order",
"description": "Schema for an Oracle Transportation Management shipment order (order to move), representing a request to transport goods from one location to another.",
"type": "object",
"properties": {
"shipmentOrderGid": {
"type": "string",
"description": "Global identifier in domain.xid format"
},
"shipmentOrderXid": {
"type": "string",
"description": "User-defined order identifier"
},
"status": {
"type": "string",
"enum": ["I", "OB", "PL", "DP", "IT", "DL", "CL"],
"description": "I=Initial, OB=Open-Booked, PL=Planned, DP=Dispatched, IT=InTransit, DL=Delivered, CL=Closed"
},
"sourceLocationGid": {
"type": "string",
"description": "Origin location GID"
},
"destLocationGid": {
"type": "string",
"description": "Destination location GID"
},
"earlyPickupDate": {
"type": "string",
"format": "date-time",
"description": "Earliest allowable pickup date"
},
"latePickupDate": {
"type": "string",
"format": "date-time",
"description": "Latest allowable pickup date"
},
"earlyDeliveryDate": {
"type": "string",
"format": "date-time"
},
"lateDeliveryDate": {
"type": "string",
"format": "date-time",
"description": "Required delivery date"
},
"transportationMode": {
"type": "string",
"enum": ["LTL", "TL", "OCEAN", "AIR", "RAIL", "PARCEL", "INTERMODAL"]
},
"totalWeight": {
"type": "number",
"description": "Total shipment weight"
},
"totalWeightUom": {
"type": "string",
"enum": ["LB", "KG", "T", "MT"],
"description": "Weight unit of measure"
},
"totalVolume": {
"type": "number"
},
"totalVolumeUom": {
"type": "string"
},
"lines": {
"type": "array",
"description": "Shipment order line items",
"items": {
"$ref": "#/$defs/ShipmentOrderLine"
}
},
"insertDate": {
"type": "string",
"format": "date-time"
},
"lastUpdateDate": {
"type": "string",
"format": "date-time"
}
},
"required": ["shipmentOrderXid", "sourceLocationGid", "destLocationGid", "lateDeliveryDate"],
"$defs": {
"ShipmentOrderLine": {
"type": "object",
"properties": {
"lineNumber": { "type": "integer" },
"itemGid": { "type": "string" },
"itemDescription": { "type": "string" },
"quantity": { "type": "number" },
"quantityUom": { "type": "string" },
"weight": { "type": "number" },
"weightUom": { "type": "string", "enum": ["LB", "KG", "T", "MT"] },
"volume": { "type": "number" },
"volumeUom": { "type": "string" },
"packageType": { "type": "string" }
},
"required": ["lineNumber", "quantity", "quantityUom"]
}
},
"examples": [
{
"shipmentOrderXid": "SO-2026-00456",
"shipmentOrderGid": "ACME.SO-2026-00456",
"status": "PL",
"sourceLocationGid": "ACME.CHICAGO-WH",
"destLocationGid": "ACME.DALLAS-DC",
"earlyPickupDate": "2026-03-20T07:00:00Z",
"latePickupDate": "2026-03-20T17:00:00Z",
"earlyDeliveryDate": "2026-03-22T07:00:00Z",
"lateDeliveryDate": "2026-03-22T17:00:00Z",
"transportationMode": "TL",
"totalWeight": 42000,
"totalWeightUom": "LB"
}
]
}
Work with this as data
Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.
MCP server
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
Tools for schemas
4 MCP tools reach this
find_json_schemasBrowse and filter every JSON Schema in the catalog.apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.resolveTurn a domain, URL or GitHub org into the provider it belongs to.find_cohortsEvery scored population of providers in the catalog.
Call it yourself
curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/oracle-otm-shipment-order"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
Get an API key
Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.
A second provider on the same verified email joins the account you already have.