We use cookies for analytics and to serve ads. Accept to enable Google Analytics and AdSense. You can decline to stay opt-out.
Transcript pages tying an Article to the source media (audio/video), with FAQs and breadcrumb navigation.
Represents the transcript page content with dates and authorship.
Anchors the source media with URL, format, and transcript text.
Answers common questions about availability, licensing, and downloads.
Provides navigation context to the transcript page.
Ensure every applicable required property is present in your implementation. Nested props reference their parent objects (for example, `offers.priceCurrency`).
Paste as a single script tag. Keep product details, offer data, shipping/returns, and FAQ answers in sync with the page.
[
{
"@context": "https://schema.org",
"@type": "Article",
"@id": "https://www.example.com/podcast/episode-12/transcript#article",
"headline": "Episode 12 Transcript — Scaling APIs",
"description": "Full transcript for Episode 12 covering API scaling patterns.",
"datePublished": "2025-02-18",
"dateModified": "2025-02-18",
"url": "https://www.example.com/podcast/episode-12/transcript",
"author": { "@type": "Person", "name": "Alex Kim" },
"mainEntityOfPage": "https://www.example.com/podcast/episode-12/transcript",
"associatedMedia": { "@id": "https://www.example.com/podcast/episode-12/audio#media" }
},
{
"@context": "https://schema.org",
"@type": "AudioObject",
"@id": "https://www.example.com/podcast/episode-12/audio#media",
"name": "Episode 12 — Scaling APIs",
"description": "Podcast episode discussing API scaling patterns.",
"contentUrl": "https://cdn.example.com/audio/episode-12.mp3",
"encodingFormat": "audio/mpeg",
"duration": "PT42M10S",
"inLanguage": "en",
"uploadDate": "2025-02-18",
"transcript": "In this episode, we explore API scaling patterns including rate limiting, caching, and fan-out controls..."
},
{
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": [
{
"@type": "Question",
"name": "Can I download the audio?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Yes. Use the download link on the episode page. The transcript remains available for on-site viewing."
}
},
{
"@type": "Question",
"name": "Is this transcript licensed for reuse?",
"acceptedAnswer": {
"@type": "Answer",
"text": "You may quote short excerpts with attribution. For full reuse, contact us for permission."
}
},
{
"@type": "Question",
"name": "Do you support other languages?",
"acceptedAnswer": {
"@type": "Answer",
"text": "We publish transcripts in English. Machine-translated versions are planned for a future release."
}
}
]
},
{
"@context": "https://schema.org",
"@type": "BreadcrumbList",
"itemListElement": [
{ "@type": "ListItem", "position": 1, "name": "Home", "item": "https://www.example.com" },
{ "@type": "ListItem", "position": 2, "name": "Podcast", "item": "https://www.example.com/podcast" },
{ "@type": "ListItem", "position": 3, "name": "Episode 12 Transcript", "item": "https://www.example.com/podcast/episode-12/transcript" }
]
}
]Yes. Article represents the transcript page; AudioObject anchors the source media and includes the transcript text.
Swap AudioObject for VideoObject when the transcript is for video content, and align required fields accordingly.