| { |
| "$schema": "https://json-schema.org/draft/2020-12/schema", |
| "title": "EgoDemo manifest row", |
| "type": "object", |
| "required": [ |
| "demo_clip_id", |
| "source_repo", |
| "source_config", |
| "source_clip_id", |
| "source_revision", |
| "counts_toward_10k", |
| "scene_family", |
| "duration_s", |
| "head_video_ref", |
| "hand_pose_3d_ref", |
| "sha256" |
| ], |
| "properties": { |
| "demo_clip_id": {"type": "string", "minLength": 1}, |
| "source_repo": {"enum": ["xuejf/EgoStandard", "xuejf/EgoPro"]}, |
| "source_config": {"enum": ["EgoStandard", "EgoStand-motion", "EgoFull", "EgoPro", "EgoPro-motion", "EgoProMax"]}, |
| "source_clip_id": {"type": "string", "minLength": 1}, |
| "source_revision": {"type": "string", "minLength": 1}, |
| "counts_toward_10k": {"const": false}, |
| "scene_family": {"enum": ["Home", "Hospitality", "Retail", "Sports", "Logistics", "Office", "Industry"]}, |
| "duration_s": {"type": "number", "exclusiveMinimum": 0}, |
| "head_video_ref": {"type": "string"}, |
| "wrist_video_ref": {"type": ["string", "null"]}, |
| "hand_pose_3d_ref": {"type": "string"}, |
| "body_pose_3d_ref": {"type": ["string", "null"]}, |
| "semantics_v7_ref": {"type": ["string", "null"]}, |
| "sha256": {"type": "string", "pattern": "^[a-fA-F0-9]{64}$"} |
| }, |
| "additionalProperties": true |
| } |
|
|