We use cookies for analytics and to serve ads. Accept to enable Google Analytics and AdSense. You can decline to stay opt-out.
Music release/album pages with MusicRelease + MusicAlbum context, FAQs, and breadcrumb navigation.
Captures the release event and ties it to the album.
Describes the album and artist associated with the release.
Answers questions about formats, availability, and pre-orders.
Provides navigation context to the release 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": "MusicAlbum",
"@id": "https://www.example.com/releases/neon-skies#album",
"name": "Neon Skies",
"byArtist": {
"@type": "MusicGroup",
"name": "Atlas Avenue"
},
"image": "https://www.example.com/images/neon-skies.webp",
"url": "https://www.example.com/releases/neon-skies",
"numTracks": 12,
"genre": "Indie Pop"
},
{
"@context": "https://schema.org",
"@type": "MusicRelease",
"@id": "https://www.example.com/releases/neon-skies#release",
"name": "Neon Skies (Digital Release)",
"releaseOf": { "@id": "https://www.example.com/releases/neon-skies#album" },
"datePublished": "2025-08-15",
"url": "https://www.example.com/releases/neon-skies",
"musicReleaseFormat": "https://schema.org/DigitalFormat",
"recordLabel": {
"@type": "Organization",
"name": "Northwind Records"
},
"catalogNumber": "NR-2048"
},
{
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": [
{
"@type": "Question",
"name": "Will there be a vinyl release?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Yes. Vinyl pre-orders open on release day with shipping in October."
}
},
{
"@type": "Question",
"name": "Where can I stream the album?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Streaming links for Spotify, Apple Music, and YouTube are listed on the page."
}
},
{
"@type": "Question",
"name": "Is there a deluxe edition?",
"acceptedAnswer": {
"@type": "Answer",
"text": "A deluxe edition with two bonus tracks will be available later in the year."
}
}
]
},
{
"@context": "https://schema.org",
"@type": "BreadcrumbList",
"itemListElement": [
{ "@type": "ListItem", "position": 1, "name": "Home", "item": "https://www.example.com" },
{ "@type": "ListItem", "position": 2, "name": "Releases", "item": "https://www.example.com/releases" },
{ "@type": "ListItem", "position": 3, "name": "Neon Skies", "item": "https://www.example.com/releases/neon-skies" }
]
}
]Yes. Use one MusicRelease per format (digital, vinyl, CD), each tied to the same MusicAlbum.
Yes. Add track items to the MusicAlbum if they appear on the page.