VTEX · Schema

Evidence

cURL with the call that the connector has made for a VTEX system. It will provide the evidence needed to contextualize the entry, if the user needs to fully understand the process ocurred, or solve any errors.

CommerceE-CommerceRetailMarketplacePayments

Properties

Name Type Description
request string cURL with the request call that the connector has made for a VTEX system. It will provide the evidence needed to contextualize the entry, if the user needs to fully understand the process ocurred, or
response string cURL with the response of the call that the connector has made for a VTEX system. It will provide the evidence needed to contextualize the entry, if the user needs to fully understand the process occu
View JSON Schema on GitHub

JSON Schema

vtex-evidence-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Evidence",
  "title": "Evidence",
  "description": "cURL with the call that the connector has made for a VTEX system. It will provide the evidence needed to contextualize the entry, if the user needs to fully understand the process ocurred, or solve any errors.",
  "required": [
    "request",
    "response"
  ],
  "type": "object",
  "properties": {
    "request": {
      "type": "string",
      "description": "cURL with the request call that the connector has made for a VTEX system. It will provide the evidence needed to contextualize the entry, if the user needs to fully understand the process ocurred, or solve any errors.",
      "default": "GET https://www.vtex.com"
    },
    "response": {
      "type": "string",
      "description": "cURL with the response of the call that the connector has made for a VTEX system. It will provide the evidence needed to contextualize the entry, if the user needs to fully understand the process occurred, or solve any errors.",
      "default": "200 Ok"
    }
  }
}