VTEX · Schema

Event

CommerceE-CommerceRetailMarketplacePayments

Properties

Name Type Description
city string
state string
description string
date string
View JSON Schema on GitHub

JSON Schema

vtex-event-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Event",
  "title": "Event",
  "required": [
    "city",
    "state",
    "description",
    "date"
  ],
  "type": "object",
  "properties": {
    "city": {
      "type": "string"
    },
    "state": {
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "date": {
      "type": "string"
    }
  },
  "example": {
    "city": "Rio de Janeiro",
    "state": "RJ",
    "description": "Coletado pela transportadora",
    "date": "2015-06-23"
  }
}