VTEX · Schema

Timezone

Time zone information.

CommerceE-CommerceRetailMarketplacePayments

Properties

Name Type Description
offset integer Time zone offset.
value string Time zone.
label string Label.
View JSON Schema on GitHub

JSON Schema

vtex-timezone-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Timezone",
  "title": "Timezone",
  "required": [
    "offset",
    "value",
    "label"
  ],
  "type": "object",
  "description": "Time zone information.",
  "properties": {
    "offset": {
      "type": "integer",
      "format": "int32",
      "description": "Time zone offset."
    },
    "value": {
      "type": "string",
      "description": "Time zone."
    },
    "label": {
      "type": "string",
      "nullable": true,
      "description": "Label."
    }
  },
  "example": {
    "offset": 300,
    "value": "America/Bogota",
    "label": null
  }
}