prediction.json (296B)
1 { 2 "$schema": "http://json-schema.org/draft-07/schema#", 3 "title": "Prediction", 4 "type": "object", 5 "required": [ 6 "input_data", 7 "score" 8 ], 9 "properties": { 10 "input_data": { 11 "type": "string" 12 }, 13 "score": { 14 "type": "number", 15 "format": "float" 16 } 17 } 18 }