{
  "$id": "audio-comp.schema.json",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$ref": "file-comp.schema.json",
  "required": [ "type", "sourceUrl", "sourceType" ],
  "properties": {
    "type": {
      "type": "string",
      "description": "Should always be set to audio",
      "const": "audio"
    },
    "transcript": {
      "type": "string",
      "description": "The transcript of the video, if it exists"
    }
  }
}
