File size: 1,226 Bytes
20ca54b | 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 45 46 47 | {
"schema_version": "1.0.0",
"fields": {
"hp": {
"column": "state_hp",
"dtype": "uint8",
"nullable": true,
"description": "Player health points at the frame timestamp."
},
"armor": {
"column": "state_armor",
"dtype": "uint8",
"nullable": true,
"description": "Player armor points."
},
"hunger": {
"column": "state_hunger",
"dtype": "uint8",
"nullable": true,
"description": "Player hunger points."
},
"biome": {
"column": "state_biome",
"dtype": "string",
"nullable": true,
"description": "Minecraft biome name if available."
},
"selected_slot": {
"column": "state_selected_slot",
"dtype": "uint8",
"nullable": true,
"description": "Selected hotbar slot index."
},
"held_item": {
"column": "state_held_item",
"dtype": "string",
"nullable": true,
"description": "Item held in the selected slot."
},
"time_of_day": {
"column": "state_time_of_day",
"dtype": "string",
"nullable": true,
"description": "Coarse time of day label, e.g. day or night."
}
}
} |