VTEX · Schema

InvalidRequestValue

Installments options response body information.

CommerceE-CommerceRetailMarketplacePayments

Properties

Name Type Description
error object Error information.
View JSON Schema on GitHub

JSON Schema

vtex-invalidrequestvalue-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/InvalidRequestValue",
  "title": "InvalidRequestValue",
  "required": [
    "error"
  ],
  "type": "object",
  "description": "Installments options response body information.",
  "properties": {
    "error": {
      "required": [
        "code",
        "message",
        "exception"
      ],
      "type": "object",
      "description": "Error information.",
      "properties": {
        "code": {
          "type": "string",
          "description": "Error code."
        },
        "message": {
          "type": "string",
          "description": "Error message."
        },
        "exception": {
          "type": "string",
          "description": "Exception information.",
          "nullable": true
        }
      }
    }
  }
}