VTEX · Schema

ValidRequest

Installments options response body information.

CommerceE-CommerceRetailMarketplacePayments

Properties

Name Type Description
value number Value to be paid in installments.
installments array Installments information.
View JSON Schema on GitHub

JSON Schema

vtex-validrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ValidRequest",
  "title": "ValidRequest",
  "required": [
    "value",
    "installments"
  ],
  "type": "object",
  "description": "Installments options response body information.",
  "properties": {
    "value": {
      "type": "number",
      "description": "Value to be paid in installments."
    },
    "installments": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Installment"
      },
      "description": "Installments information."
    }
  }
}