Urban Outfitters · Schema

ShipmentCreate

Request to create a shipment record

RetailFashionApparelEcommerceAffiliateMarketplaceFortune 1000

Properties

Name Type Description
carrier string
trackingNumber string
estimatedDelivery string
View JSON Schema on GitHub

JSON Schema

marketplace-api-shipment-create-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/urban-outfitters/refs/heads/main/json-schema/marketplace-api-shipment-create-schema.json",
  "title": "ShipmentCreate",
  "description": "Request to create a shipment record",
  "type": "object",
  "properties": {
    "carrier": {
      "type": "string",
      "example": "UPS"
    },
    "trackingNumber": {
      "type": "string",
      "example": "1Z999AA10123456784"
    },
    "estimatedDelivery": {
      "type": "string",
      "format": "date",
      "example": "2025-03-20"
    }
  },
  "required": [
    "carrier",
    "trackingNumber"
  ]
}