blocks-transformer/response_schema.json
Admin User 46e6bc30ba
All checks were successful
Build and Push Docker Image / test (push) Successful in 11s
Build and Push Docker Image / build_and_push (push) Successful in 2m23s
Series M v1 model
2025-06-13 18:56:09 +00:00

23 lines
533 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", "null"],
"description": "Reason for the model decision"
}
}
}