VTEX · Example Payload

Vtex Getschemas Example

CommerceE-CommerceRetailMarketplacePayments

Vtex Getschemas Example is an example object payload from VTEX, with 6 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

operationIdmethodpathsummaryrequestExamplesresponseExamples

Example Payload

Raw ↑
{
  "operationId": "Getschemas",
  "method": "GET",
  "path": "/api/dataentities/{dataEntityName}/schemas",
  "summary": "VTex Get schemas",
  "requestExamples": [],
  "responseExamples": [
    {
      "status": "200",
      "contentType": "application/json",
      "example": [
        {
          "name": "testschema",
          "schema": {
            "properties": {
              "name": {
                "type": "string"
              }
            }
          }
        }
      ]
    }
  ]
}