VTEX · Schema

Fields1

Payment parameters information.

CommerceE-CommerceRetailMarketplacePayments

Properties

Name Type Description
name string Payment parameter name.
value string Payment parameter value.
View JSON Schema on GitHub

JSON Schema

vtex-fields1-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Fields1",
  "title": "Fields1",
  "required": [
    "name",
    "value"
  ],
  "type": "object",
  "description": "Payment parameters information.",
  "properties": {
    "name": {
      "type": "string",
      "description": "Payment parameter name."
    },
    "value": {
      "type": "string",
      "description": "Payment parameter value."
    }
  }
}