29 lines
622 B
JSON
29 lines
622 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"type": "object",
|
|
"properties": {
|
|
"application_id": {
|
|
"type": "string",
|
|
"description": "Unique identifier for the application"
|
|
},
|
|
"prediction": {
|
|
"type": "number",
|
|
"description": "Model's predicted probability score"
|
|
},
|
|
"grade": {
|
|
"type": "string",
|
|
"description": "HD Model Grade"
|
|
},
|
|
"reason_description": {
|
|
"type": "string",
|
|
"description": "Reason for the model decision"
|
|
}
|
|
},
|
|
"required": [
|
|
"application_id",
|
|
"prediction",
|
|
"grade",
|
|
"reason_description"
|
|
]
|
|
}
|