VTEX · Schema

LogisticsInfoDeliveryWindow

CommerceE-CommerceRetailMarketplacePayments

Properties

Name Type Description
startDateUtc string
endDateUtc string
price integer
View JSON Schema on GitHub

JSON Schema

vtex-logisticsinfodeliverywindow-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/LogisticsInfoDeliveryWindow",
  "title": "LogisticsInfoDeliveryWindow",
  "type": "object",
  "properties": {
    "startDateUtc": {
      "type": "string",
      "format": "date-time"
    },
    "endDateUtc": {
      "type": "string",
      "format": "date-time"
    },
    "price": {
      "type": "integer",
      "format": "int64"
    }
  },
  "additionalProperties": false
}