blocks-transformer/response_schema.json

29 lines
622 B
JSON
Raw Normal View History

2025-04-09 18:36:39 +00:00
{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"application_id": {
2025-06-13 18:01:40 +00:00
"type": "string",
"description": "Unique identifier for the application"
2025-04-09 18:36:39 +00:00
},
2025-06-13 18:01:40 +00:00
"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"
2025-04-09 18:36:39 +00:00
}
2025-06-13 18:01:40 +00:00
},
"required": [
"application_id",
"prediction",
"grade",
"reason_description"
]
2025-04-09 18:36:39 +00:00
}