blocks-transformer/request_schema.json
Admin User e2c2560e0a
All checks were successful
Build and Push Docker Image / test (push) Successful in 9s
Build and Push Docker Image / build_and_push (push) Successful in 22s
Series M v1 model
2025-04-10 18:33:30 +00:00

22 lines
499 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"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": []
}