blocks-data-enricher-db-lookup/request_schema.json
Ankur Malik f664314b29
All checks were successful
Build and Push Docker Image / setup (push) Successful in 5s
Build and Push Docker Image / build_and_push (push) Successful in 33s
Add db_push_scores branch contents
2025-11-26 12:08:33 -05:00

28 lines
505 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema",
"type": "object",
"properties": {
"application_key": {
"type": "string"
},
"application_timestamp": {
"type": "string",
"format": "date-time"
},
"hd_score_m1": {
"type": ["number", "null"]
},
"hd_score_m2": {
"type": ["number", "null"]
},
"hd_score_iso_m2": {
"type": ["number", "null"]
}
},
"required": [
"application_key",
"application_timestamp"
]
}