{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://majesticcore.dev/schemas/audioTrackInfo.schema.json",
  "title": "AudioTrackInfo",
  "description": "Audio track for in-player switching.",
  "type": "object",
  "required": ["index", "codec", "channels"],
  "properties": {
    "index": { "type": "integer" },
    "codec": { "type": "string" },
    "channels": { "type": "integer" },
    "language": { "type": ["string", "null"] },
    "title": { "type": ["string", "null"] }
  },
  "additionalProperties": false
}
