{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/UpdateAntifraudTransactionsoptionalRequest", "title": "UpdateAntifraudTransactionsoptionalRequest", "required": [ "id", "reference", "value", "ip", "store", "deviceFingerprint", "miniCart", "payments", "hook" ], "type": "object", "properties": { "id": { "type": "string", "description": "VTEX transaction ID. The ID of the transaction related with this payment.", "example": "D3AA1FC8372E430E8236649DB5EBD08E" }, "reference": { "type": "string", "description": "VTEX order reference key. The key of the order (from VTEX Orders system) related with this payment.", "example": "v32478982vtx-01" }, "value": { "type": "integer", "description": "VTEX transaction order value.", "example": 10 }, "ip": { "type": "string", "description": "The original IP address from the browser.", "example": "10.0.0.1" }, "store": { "type": "string", "description": "VTEX has a main name for the store. This unique name is often used in URL to access VTEX configurations.", "example": "serasa" }, "deviceFingerprint": { "type": "string", "description": "Device fingerprint generated by the provider. This is generated by using Google Tag Manager that the provider implements.", "example": "Generated_using_GTM_Store_Is_Responsible_To_Configure" }, "miniCart": { "$ref": "#/components/schemas/MiniCart" }, "payments": { "type": "array", "description": "Payments information.", "items": { "$ref": "#/components/schemas/Payment" } }, "hook": { "type": "string" } } }