VTEX · Schema

StorePlan

CommerceE-CommerceRetailMarketplacePayments

Properties

Name Type Description
id string
frequencies array
View JSON Schema on GitHub

JSON Schema

vtex-storeplan-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/StorePlan",
  "title": "StorePlan",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "nullable": true
    },
    "frequencies": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Frequency"
      },
      "nullable": true
    }
  },
  "additionalProperties": false
}