{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/FraudResult", "title": "FraudResult", "properties": { "accountScore": { "description": "The total fraud score generated by the risk checks.", "format": "int32", "type": "integer" }, "results": { "description": "The result of the individual risk checks.", "items": { "$ref": "#/components/schemas/FraudCheckResult" }, "type": "array" } }, "required": [ "accountScore" ], "type": "object" }