VTEX · Schema

DateRange

Trade Policy Fixed Price Validity Period Object.

CommerceE-CommerceRetailMarketplacePayments

Properties

Name Type Description
from string Indicates the date and time when the fixed price will start to be valid.
to string Indicates the date and time from which the fixed price will no longer be valid.
View JSON Schema on GitHub

JSON Schema

vtex-daterange-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DateRange",
  "title": "DateRange",
  "description": "Trade Policy Fixed Price Validity Period Object.",
  "required": [
    "from",
    "to"
  ],
  "type": "object",
  "properties": {
    "from": {
      "type": "string",
      "description": "Indicates the date and time when the fixed price will start to be valid."
    },
    "to": {
      "type": "string",
      "description": "Indicates the date and time from which the fixed price will no longer be valid."
    }
  }
}