VTEX · Schema

Error

Response body object.

CommerceE-CommerceRetailMarketplacePayments

Properties

Name Type Description
message string Error message.
stack string Error stack trace.
View JSON Schema on GitHub

JSON Schema

vtex-error-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Error",
  "title": "Error",
  "type": "object",
  "description": "Response body object.",
  "required": [
    "stack",
    "message"
  ],
  "properties": {
    "message": {
      "type": "string",
      "description": "Error message."
    },
    "stack": {
      "type": "string",
      "description": "Error stack trace."
    }
  }
}