flows/request_schema.json
Admin User 4334e369b3
Some checks failed
Build and Push Docker Image / build_and_push (push) Has been cancelled
Build and Push Docker Image / test (push) Has been cancelled
Update README.md
2025-06-13 18:34:03 +00:00

35 lines
701 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema",
"properties": {
"application_id": {
"type": [
"string",
"null"
],
"description": "Unique identifier for the application.",
"required": []
},
"tu_credit_report": {
"type": [
"object",
"null"
],
"description": "User Credit report",
"properties": {
"creditBureau": {
"type": "object",
"description": "Credit bureau details"
}
}
},
"creditBureau": {
"type": [
"object",
"null"
],
"description": "Credit bureau details",
"source": null
}
},
"required": []
}