Amazon · JSON Structure

Selling Partner Order Structure

Order schema from Amazon Selling Partner API

Type: object Properties: 10
AmazonAdvertisingAlexaE-CommerceMarketplacePaymentsVoiceFortune 100

Order is a JSON Structure definition published by Amazon, describing 10 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

AmazonOrderId PurchaseDate LastUpdateDate OrderStatus FulfillmentChannel OrderTotal NumberOfItemsShipped NumberOfItemsUnshipped ShipServiceLevel MarketplaceId

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

JSON Structure

Raw ↑
{
  "type": "object",
  "properties": {
    "AmazonOrderId": {
      "type": "string"
    },
    "PurchaseDate": {
      "type": "datetime"
    },
    "LastUpdateDate": {
      "type": "datetime"
    },
    "OrderStatus": {
      "type": "string",
      "enum": [
        "Pending",
        "Unshipped",
        "PartiallyShipped",
        "Shipped",
        "Canceled",
        "Unfulfillable"
      ]
    },
    "FulfillmentChannel": {
      "type": "string",
      "enum": [
        "MFN",
        "AFN"
      ]
    },
    "OrderTotal": {
      "$ref": "#/components/schemas/Money"
    },
    "NumberOfItemsShipped": {
      "type": "integer"
    },
    "NumberOfItemsUnshipped": {
      "type": "integer"
    },
    "ShipServiceLevel": {
      "type": "string"
    },
    "MarketplaceId": {
      "type": "string"
    }
  },
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "name": "Order",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon/refs/heads/main/json-structure/selling-partner-order-structure.json",
  "description": "Order schema from Amazon Selling Partner API"
}