VTEX · Schema

Fields

String dictionary with the names of the fields and their respective values that must be inserted into the order.

CommerceE-CommerceRetailMarketplacePayments

Properties

Name Type Description
marketplacePaymentMethod string String with field's key and value.
View JSON Schema on GitHub

JSON Schema

vtex-fields-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Fields",
  "title": "Fields",
  "description": "String dictionary with the names of the fields and their respective values that must be inserted into the order.",
  "required": [
    "marketplacePaymentMethod"
  ],
  "type": "object",
  "properties": {
    "marketplacePaymentMethod": {
      "type": "string",
      "title": "marketplacePaymentMethod",
      "description": "String with field's key and value.",
      "example": "credit card"
    }
  },
  "example": {
    "marketplacePaymentMethod": "credit card"
  }
}