forked from h2oai/h2o-2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsummary2.jsonschema
31 lines (30 loc) · 1.32 KB
/
summary2.jsonschema
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{
"Request2": { "type": "number" },
"summaries": {
"type": "array", "items": {
"type": "object", "properties": {
"colname": { "type": "string" },
"type": {"type": "string"}
"nacnt": { "type": "number" },
"hstart":{"type": "number"},
"hstep":{"type": "number"},
"hbrk": { "type": "array", "items": { "type": "string" } },
"hcnt": { "type": "array", "items": { "type": "number" } }
"stats": {"type": "array", "items": {
"type": "object", "properties": {
"cardinality": {"type": "number"}, # optional?
"type":{"type": "string"},
"mean": {"type": "number"},
"sd":{"type": "number"},
"zeros":{"type": "number"},
"mins": { "type": "array", "items": { "type": "number" } },
"maxs": { "type": "array", "items": { "type": "number" } },
"pct": { "type": "array", "items": { "type": "number" } },
"pctile": { "type": "array", "items": { "type": "number" } }
}
},
}
}
}
}
}