Series M v1 model
This commit is contained in:
parent
f2e9d599b9
commit
e2c2560e0a
2
block.py
2
block.py
@ -8,7 +8,7 @@ logging.basicConfig(
|
||||
)
|
||||
logger = logging.getLogger(__name__)
|
||||
|
||||
def __main__(application_id: str, tu_credit_report: str) -> dict:
|
||||
def __main__(application_id: str, tu_credit_report: dict) -> dict:
|
||||
# Randomly pick an integer between 800 and 1400
|
||||
hd_score_m1 = random.randint(800, 1400)
|
||||
|
||||
|
||||
@ -7,8 +7,14 @@
|
||||
"description": "Unique identifier for the application."
|
||||
},
|
||||
"tu_credit_report": {
|
||||
"type": ["string", "null"],
|
||||
"description": "User Credit report"
|
||||
"type": ["object", "null"],
|
||||
"description": "User Credit report",
|
||||
"properties": {
|
||||
"creditBureau": {
|
||||
"type": "object",
|
||||
"description": "Credit bureau details"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"required": []
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user