Fraud Check Passed
v1.0.0eventsPublished when a payment passes fraud screening.
1{
2 "$schema": "http://json-schema.org/draft-07/schema#",
3 "title": "FraudCheckPassed",
4 "description": "Published when a payment passes fraud screening",
5 "type": "object",
6 "properties": {
7 "paymentId": { "type": "string", "format": "uuid" },
8 "orderId": { "type": "string", "format": "uuid" },
9 "score": {
10 "type": "number",
11 "minimum": 0,
12 "maximum": 1,
13 "description": "Fraud risk score; lower is safer"
14 },
15 "checkedAt": { "type": "string", "format": "date-time" }
16 },
17 "required": ["paymentId", "orderId", "checkedAt"]
18}
19Details
- Format
- JSON Schema
- Resource
- events
- Filename
- schema.json