blocks-transformer/response_schema.json
Ankur Malik d167609fad
All checks were successful
Build and Push Docker Image / test (push) Successful in 17s
Build and Push Docker Image / build_and_push (push) Successful in 2m58s
Add pd v3 post processing block
2025-12-04 10:59:02 -05:00

17 lines
466 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"pd_a": { "type": "number" },
"pd_b": { "type": "number" },
"pd_t": { "type": "number" },
"pd_iso_a": {"type": "number" },
"pd_iso_b": {"type": "number" },
"final_pd": {"type": "number" },
"grade": {"type": "string"}
},
"required": ["final_pd", "grade", "pd_a", "pd_b", "pd_t", "pd_iso_a", "pd_iso_b"],
"additionalProperties": false
}