VTEX · Schema

RequestData

Request data information.

CommerceE-CommerceRetailMarketplacePayments

Properties

Name Type Description
body string Original request body information.
View JSON Schema on GitHub

JSON Schema

vtex-requestdata-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RequestData",
  "title": "RequestData",
  "required": [
    "body"
  ],
  "type": "object",
  "description": "Request data information.",
  "properties": {
    "body": {
      "type": "string",
      "description": "Original request body information.",
      "example": "{{originalRequestBody}}"
    }
  }
}