VTEX · Schema

BusinessHour

CommerceE-CommerceRetailMarketplacePayments

Properties

Name Type Description
dayOfWeek integer
openingTime string
closingTime string
View JSON Schema on GitHub

JSON Schema

vtex-businesshour-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BusinessHour",
  "title": "BusinessHour",
  "required": [
    "dayOfWeek",
    "openingTime",
    "closingTime"
  ],
  "type": "object",
  "properties": {
    "dayOfWeek": {
      "type": "integer",
      "format": "int32"
    },
    "openingTime": {
      "type": "string"
    },
    "closingTime": {
      "type": "string"
    }
  },
  "example": {
    "dayOfWeek": 1,
    "openingTime": "08:00:00",
    "closingTime": "20:00:00"
  }
}