flows/request_schema.json
Admin User 0e092448c8
All checks were successful
Build and Push Docker Image / test (push) Successful in 7s
Build and Push Docker Image / build_and_push (push) Successful in 19s
Update README.md
2025-04-10 18:39:13 +00:00

26 lines
525 B
JSON

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