-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathschema.json
44 lines (44 loc) · 1.08 KB
/
schema.json
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
[
{
"description": "Timestamp when the event occurred. Partition key.",
"name": "timestamp",
"type": "TIMESTAMP",
"mode": "REQUIRED"
},
{
"description": "The unique tenant ID.",
"name": "tenant",
"type": "STRING",
"mode": "REQUIRED"
},
{
"description": "The unique device ID.",
"name": "device",
"type": "STRING",
"mode": "REQUIRED"
},
{
"description": "The MIDI event type triggering this event.",
"name": "eventtype",
"type": "INTEGER",
"mode": "REQUIRED"
},
{
"description": "A value associated with the MIDI event.",
"name": "value1",
"type": "INTEGER",
"mode": "NULLABLE"
},
{
"description": "A value associated with the MIDI event.",
"name": "value2",
"type": "INTEGER",
"mode": "NULLABLE"
},
{
"description": "A description associated with the MIDI event.",
"name": "description1",
"type": "STRING",
"mode": "NULLABLE"
}
]