REST Resource: musicReleases

  • The MusicRelease resource represents a music release with details like title, artists, and an associated playlist.

  • MusicRelease includes information such as name, title, a list of artists, playlist ID, and whether it has open change requests.

  • You can retrieve a list of music releases using the list method.

  • This resource is represented in JSON format with specific fields for each data point.

Resource: MusicRelease

A representation of a music release.

JSON representation
{
 "name": string,
 "title": string,
 "artists": [
 {
 object (Artist )
 }
 ],
 "playlistId": string,
 "hasOpenChangeRequest": boolean
}
Fields
name

string

The resource name of the music release. Format: releases/{release}

title

string

The title of this release.

artists[]

object (Artist )

List of artists for the release.

playlistId

string

The OMV-preferred playlist.

hasOpenChangeRequest

boolean

The release has at least one ChangeRequest in open status.

Methods

list

Retrieves a list of music releases.

All rights reserved. Java is a registered trademark of Oracle and/or its affiliates.

Last updated 2025年08月20日 UTC.