flows/request_schema.json

27 lines
539 B
JSON
Raw Normal View History

2025-04-09 18:50:56 +00:00
{
"$schema": "http://json-schema.org/draft-07/schema",
"properties": {
"application_id": {
"type": [
"string",
"null"
],
2025-06-13 18:17:13 +00:00
"description": "Unique identifier for the application.",
"required": []
2025-06-13 18:34:03 +00:00
},
"tu_credit_report": {
"type": [
"object",
"null"
],
"description": "User Credit report",
"properties": {
2025-06-16 17:25:27 +00:00
"data": {
2025-06-13 18:34:03 +00:00
"type": "object",
"description": "Credit bureau details"
}
}
2025-04-09 18:50:56 +00:00
}
},
"required": []
}