{ "$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" } } }