{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/customer_verify_response", "title": "customer_verify_response", "allOf": [ { "properties": { "kyc_status": { "$ref": "#/components/schemas/customer_kyc_status" }, "verifications": { "description": "Array of verification results.", "items": { "$ref": "#/components/schemas/customer_verification_result" }, "type": "array" } }, "required": [ "kyc_status", "verifications" ], "type": "object" }, { "$ref": "#/components/schemas/paginated_response" } ] }