{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://aiidiots.ai/specs/podcast-transcript-artifact.schema.json",
  "title": "Podcast U Transcript Artifact",
  "type": "object",
  "additionalProperties": true,
  "required": [
    "episodeId",
    "lane",
    "status",
    "route",
    "tool",
    "privatePath"
  ],
  "properties": {
    "episodeId": { "type": "string" },
    "lane": { "type": "string" },
    "status": { "type": "string" },
    "captionStatus": { "type": "string" },
    "route": { "type": "string" },
    "tool": { "type": "string" },
    "links": { "type": "array", "items": { "type": "string" } },
    "youtubeUrl": { "type": "string" },
    "audioUrl": { "type": "string" },
    "audioBytes": { "type": "number" },
    "privatePath": { "type": "string" }
  }
}
