blocks-transformer/response_schema.json
Admin User 95034efa4e
All checks were successful
Build and Push Docker Image / test (push) Successful in 2m30s
Build and Push Docker Image / build_and_push (push) Successful in 4m50s
Series M v1 model
2025-06-13 18:01:40 +00:00

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"
]
}