Amazon Outposts · Schema

ShipmentInformation

Information about a line item shipment.

Edge ComputingHybrid CloudInfrastructureOn-Premises

Properties

Name Type Description
ShipmentTrackingNumber object
ShipmentCarrier object
View JSON Schema on GitHub

JSON Schema

openapi-shipment-information-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-outposts/refs/heads/main/json-schema/openapi-shipment-information-schema.json",
  "title": "ShipmentInformation",
  "description": " Information about a line item shipment. ",
  "type": "object",
  "properties": {
    "ShipmentTrackingNumber": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TrackingId"
        },
        {
          "description": " The tracking number of the shipment. "
        }
      ]
    },
    "ShipmentCarrier": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ShipmentCarrier"
        },
        {
          "description": " The carrier of the shipment. "
        }
      ]
    }
  }
}