VTEX · Schema

WaitingTime

Object containing the days after order cancelation by a seller.

CommerceE-CommerceRetailMarketplacePayments

Properties

Name Type Description
waitingTime integer Number of days after order cancelation by a seller, during which another seller may be assigned to fulfill the order.
View JSON Schema on GitHub

JSON Schema

vtex-waitingtime-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/WaitingTime",
  "title": "WaitingTime",
  "type": "object",
  "description": "Object containing the days after order cancelation by a seller.",
  "required": [
    "waitingTime"
  ],
  "properties": {
    "waitingTime": {
      "type": "integer",
      "description": "Number of days after order cancelation by a seller, during which another seller may be assigned to fulfill the order."
    }
  }
}