VTEX · Schema

Antifraud

Anti-fraud information.

CommerceE-CommerceRetailMarketplacePayments

Properties

Name Type Description
implementation string Connector (anti-fraud provider) implementation class name.
affiliationId string Affiliation connector (anti-fraud provider) identification.
View JSON Schema on GitHub

JSON Schema

vtex-antifraud-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Antifraud",
  "title": "Antifraud",
  "required": [
    "implementation",
    "affiliationId"
  ],
  "type": "object",
  "description": "Anti-fraud information.",
  "nullable": true,
  "properties": {
    "implementation": {
      "type": "string",
      "description": "Connector (anti-fraud provider) implementation class name.",
      "example": "Vtex.PaymentGateway.Connectors.ClearSaleConnector",
      "nullable": true
    },
    "affiliationId": {
      "type": "string",
      "description": "Affiliation connector (anti-fraud provider) identification.",
      "example": "0a8488e6-0c30-4150-be96-b0dcaaa6a0cd",
      "nullable": true
    }
  }
}