VTEX · Schema

Responses

Responses information.

CommerceE-CommerceRetailMarketplacePayments

Properties

Name Type Description
foo string Any foo information.
custom string Any custom value.
View JSON Schema on GitHub

JSON Schema

vtex-responses-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Responses",
  "title": "Responses",
  "required": [
    "foo",
    "custom"
  ],
  "type": "object",
  "description": "Responses information.",
  "properties": {
    "foo": {
      "type": "string",
      "description": "Any foo information.",
      "example": "anyFoo"
    },
    "custom": {
      "type": "string",
      "description": "Any custom value.",
      "example": "customAnyValue"
    }
  }
}