VTEX · Schema

Create/UpdateHolidayRequest

CommerceE-CommerceRetailMarketplacePayments

Properties

Name Type Description
name string
startDate string
View JSON Schema on GitHub

JSON Schema

vtex-createupdateholidayrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateUpdateHolidayRequest",
  "title": "Create/UpdateHolidayRequest",
  "required": [
    "name",
    "startDate"
  ],
  "type": "object",
  "properties": {
    "name": {
      "type": "string"
    },
    "startDate": {
      "type": "string"
    }
  },
  "example": {
    "name": "Natal",
    "startDate": "2016-12-25"
  }
}