blocks-transformer/response_schema.json

23 lines
533 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": {
2025-06-13 18:56:09 +00:00
"type": ["string", "null"],
2025-06-13 18:01:40 +00:00
"description": "Reason for the model decision"
2025-04-09 18:36:39 +00:00
}
2025-06-13 18:42:34 +00:00
}
2025-04-09 18:36:39 +00:00
}