VTEX · Schema

DeliveryWindow

CommerceE-CommerceRetailMarketplacePayments

Properties

Name Type Description
startDateUtc string
endDateUtc string
listPrice number
View JSON Schema on GitHub

JSON Schema

vtex-deliverywindow-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DeliveryWindow",
  "title": "DeliveryWindow",
  "type": "object",
  "properties": {
    "startDateUtc": {
      "type": "string"
    },
    "endDateUtc": {
      "type": "string"
    },
    "listPrice": {
      "type": "number"
    }
  },
  "example": {
    "startDateUtc": "2016-04-20T08:00:00+00:00",
    "endDateUtc": "2016-04-20T12:00:00+00:00",
    "listPrice": 10
  }
}