28 lines
505 B
JSON
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"
|
|
]
|
|
}
|
|
|