flows/request_schema.json
Admin User 4987f4f27a
All checks were successful
Build and Push Docker Image / test (push) Successful in 1m37s
Build and Push Docker Image / build_and_push (push) Successful in 1m55s
Update request_schema.json
2025-06-13 18:35:45 +00:00

27 lines
547 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"
}
}
}
},
"required": []
}