File size: 869 Bytes
97c75c0 | 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 | # Data Dictionary
## skeleton_pose.jsonl
Common fields include:
- `camera_id`: source camera identifier.
- `frame_number`: source-frame sequence number.
- `captured_at`: timezone-aware capture timestamp.
- `track_id`: anonymous persistent track identifier.
- `frame_width`: source-frame width used for normalization.
- `frame_height`: source-frame height used for normalization.
- `landmarks`: pose landmark collection.
## motion_observations.jsonl
Common fields include:
- `camera_id`
- `track_id`
- `frame_number`
- `captured_at`
- `motion_type`
- `confidence`
## motion_segments.jsonl
Common fields include:
- `camera_id`
- `track_id`
- `movement_type`
- `started_at`
- `ended_at`
- `duration_seconds`
- `confidence`
The exact schema version and technical source metadata are available
inside the metadata directory.
|