flows/request_schema.json

26 lines
525 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"
],
"description": "Unique identifier for the application."
},
"tu_credit_report": {
"type": [
2025-04-10 18:39:13 +00:00
"object",
2025-04-09 18:50:56 +00:00
"null"
],
2025-04-10 18:39:13 +00:00
"description": "User Credit report",
"properties": {
"creditBureau": {
"type": "object",
"description": "Credit bureau details"
}
}
2025-04-09 18:50:56 +00:00
}
},
"required": []
}