flows/request_schema.json
Admin User bb9d5c7129
All checks were successful
Build and Push Docker Image / test (push) Successful in 1m58s
Build and Push Docker Image / build_and_push (push) Successful in 2m1s
Update request_schema.json
2025-06-16 17:25:27 +00:00

27 lines
539 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": {
"data": {
"type": "object",
"description": "Credit bureau details"
}
}
}
},
"required": []
}