VTEX · Schema

CreateEditSessionRequest

CommerceE-CommerceRetailMarketplacePayments

Properties

Name Type Description
public object
View JSON Schema on GitHub

JSON Schema

vtex-createeditsessionrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateEditSessionRequest",
  "title": "CreateEditSessionRequest",
  "required": [
    "public"
  ],
  "type": "object",
  "properties": {
    "public": {
      "title": "Public",
      "type": "object",
      "properties": {
        "additionalProperties": {
          "type": "object",
          "description": "Custom property.",
          "properties": {
            "value": {
              "type": "string",
              "description": "Value of the custom property."
            }
          }
        }
      },
      "example": {
        "variable2": {
          "value": "value2"
        },
        "variable3": {
          "value": "value3"
        }
      }
    }
  },
  "example": {
    "public": {
      "variable2": {
        "value": "value2"
      },
      "variable3": {
        "value": "value3"
      }
    }
  }
}