Urban Outfitters · JSON Structure

Marketplace Api Shipment Create Structure

Request to create a shipment record

Type: object Properties: 3 Required: 2
RetailFashionApparelEcommerceAffiliateMarketplaceFortune 1000

ShipmentCreate is a JSON Structure definition published by Urban Outfitters, describing 3 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

carrier trackingNumber estimatedDelivery

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

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