OrderPartyReliability

A seller's recent order-handling stats over a rolling window.

  • avgShipTimeHours
    Type: number
    min:  
    0
    nullable
    required

    Average hours between an order being placed and marked shipped. null when nothing shipped in the window.

  • completedCount
    Type: integer
    min:  
    0
    max:  
    9007199254740991
    required

    Of those, how many completed successfully.

  • completionRate
    Type: number
    min:  
    0
    max:  
    1
    nullable
    required

    Share of orders completed, from 0 to 1. null when there aren't enough orders to compute it.

  • orderCount
    Type: integer
    min:  
    0
    max:  
    9007199254740991
    required

    Orders received in the recent window that the rates are computed over.

Examples
{
  "orderCount": 96,
  "completedCount": 94,
  "completionRate": 0.98,
  "avgShipTimeHours": 21.4
}