{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://egxodata.com/datasets/egxo-household-egocentric-video-evaluation/releases/2.0.0/schema.json",
  "title": "EGXO Household Egocentric Video Public Catalog Row v2",
  "type": "object",
  "additionalProperties": false,
  "required": [
    "asset_id",
    "task_name",
    "duration_seconds",
    "width",
    "height",
    "fps"
  ],
  "properties": {
    "asset_id": {
      "type": "string",
      "pattern": "^EGXO-HH-EGO-V2-\\d{4}$"
    },
    "task_name": {
      "type": "string",
      "minLength": 1
    },
    "duration_seconds": {
      "type": "number",
      "exclusiveMinimum": 0
    },
    "width": {
      "type": "integer",
      "minimum": 1
    },
    "height": {
      "type": "integer",
      "minimum": 1
    },
    "fps": {
      "type": "number",
      "exclusiveMinimum": 0
    }
  }
}
