blocks-transformer/response_schema.json

49 lines
1.2 KiB
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"
},
2025-06-18 17:12:25 +00:00
"reason_codes": {
"type": "array",
"description": "List of reason codes explaining the model decision",
"items": {
"type": "object",
"properties": {
"code": {
"type": ["string", "null"],
"description": "Feature or score reason code"
},
"rank": {
"type": ["string", "null"],
"description": "Rank of importance (1 to 4)"
},
"description": {
"type": ["string", "null"],
"description": "Human-readable explanation for the reason"
}
},
"required": ["code", "rank", "description"]
},
"minItems": 1,
"maxItems": 4
2025-04-09 18:36:39 +00:00
}
2025-06-18 17:12:25 +00:00
},
"required": [
"application_id",
"prediction",
"grade",
"reason_codes"
]
2025-04-09 18:36:39 +00:00
}