Rand Stats

Discogs::API

zef:lizmat

Actions Status

NAME

Discogs::API - Provide basic API to Discogs

SYNOPSIS

use Discogs::API;
my $discogs = Discogs.new;

my $release = $discogs.release(249504);

DESCRIPTION

Discogs::API provides a Raku library with access to the Discogs data and functions. It tries to follow the API as closely as possible, so the up-to-date Discogs developer information can be used to look up matters that are unclear from thie documentation in this module.

One exception to this rule is that fieldnames in the JSON generated by Discogs that are using snake_case, are converted to use kebab-case in the Raku interface. So a field called allows_multiple_values in the JSON blob, will be accessible using a allow-multiple-values method in this module.

UTILITY METHODS

new

my $discogs = Discogs.new(
  client   => $client,     # Cro::HTTP::Client compatible, optional
  token    => "xfhgh1624", # Discogs access token, default: none
  key      => "kahgjkhdg", # Discogs access key, default: none
  secret   => "454215642", # Discogs access secret, default: none
  currency => "EUR",       # default: "USD"
  per-page => 10,          # default: 50
;

Create an object to access the services that the Discogs API has to offer.

One will be provided if not specified.

A token needed to access certain parts of the Discogs API. See https://www.discogs.com/settings/developers for more information. Defaults to whatever is specified with the DISCOGS_TOKEN environment variable.

A string needed to access certain parts of the Discogs API. See https://www.discogs.com/developers#page:authentication for more information.

A string needed to access certain parts of the Discogs API. See https://www.discogs.com/developers#page:authentication for more information.

A string indicating the default currency to be used when producing prices of releases in the Discogs Marketplace. It should be one of the following strings:

USD GBP EUR CAD AUD JPY CHF MXN BRL NZD SEK ZAR

An integer indicating the default number of items per page that should be produced by methods that return objects that support pagination.

client

my $default = Discogs::API.client;  # the default client

my $client = $discogs.client;       # the actual client to be used

Return the default Cro::HTTP::Client object when called as a class method. That object will be used by default when creating a Discogs::API object. Intended to be used as a base for alterations, e.g. by overriding the GET method during testing.

Returns the actual object that was (implicitely) specified during the creation of the Discogs::API object when called as an instance method.

GET

my $content = $discogs.GET("/artists/108713", Discogs::API::Artist);

Helper method to fetch data using the Discogs API for the given URI, and interpret it as data of the given class. Returns an instance of the given class, or throws if something went wrong.

test-with

my $discogs = Discogs::API.new.test-with($path);

Provide an alternate Discogs::API object that can be used for testing. Instead of fetching the data from Discogs, it will look at the indicated path and map the URI to a file with the same name. So an URI like "/artist/108713" and a path "foo/bar".IO will look for a file called "foo/bar/artist/108713.json", slurp that, and create the requested object out of that.

CONTENT METHODS

artist

my $artist = $discogs.artist(108713);

Fetch the information for the given artist ID and return that in an Discogs::API::Artist object.

artist-releases

my $artist-releases = $discogs.artist-releases(
  108713,         # the artist ID
  page     => 2,  # page number, default: 1
  per-page => 25, # items per page, default: object

  sort => "year", # sort on given key, default no sort
  sort-order => "desc", # sort order, default to "asc"
);

Fetch all of the releases of given artist ID and return them in pages in a Discogs::API::ArtistReleases object.

An integer indicating the page to obtain the ArtistRelease objects of. Defaults to 1.

An integer indicating the maximum number of items per page to be produced. Defaults to what was (implicitely) specified with the creation of the Discogs::API object.

A string indicating how the ArtistRelease objects to be returned. Defaults to no sorting. The following fields can be specified:

year title format

A string indicating the sort order of any sort action to be performed on the ArtistRelease objects to be returned. Defaults to "asc". The following fields can be specified:

asc desc

community-release-rating

my $rating = $discogs.community-release-rating(249504);

my $rating = $discogs.community-release-rating($release);

Fetch the information about the Discogs community rating for a given release and return that as an Discogs::API::CommunityReleaseRating object.

The release parameter can either be given as an unsigned integer, or as an Discogs::API::Release object.

label

my $label = $discogs.label(1);

Fetch the information for the given label ID and return that in an Discogs::API::Label object.

label-releases

my $label-releases = $discogs.label-releases(
  1,              # the label ID
  page     => 2,  # page number, default: 1
  per-page => 25, # items per page, default: object
);

Fetch all of the releases of given label ID and return them in pages in a Discogs::API::LabelReleases object.

master-release

my $master-release = $discogs.master-release(1000);

Fetch the information for the given master release ID and return that in an Discogs::API::MasterRelease object.

master-release-versions

my $master-release-versions = $discogs.master-release-versions(
  1000,                 # the master release ID
  page     => 2,        # page number, default: 1
  per-page => 25,       # items per page, default: object

  format => "CD",       # limit to format, default no limit
  label  => "Foo",      # limit to label, default no limit
  released => 1992,     # limit to year, default no limit
  country => "Belgium", # limit to country, default no limit
  sort => "released",   # sort on given key, default no sort
  sort-order => "desc", # sort order, default to "asc"
);

Fetch all of the versions of a given master release ID and return them in pages in a Discogs::API::MasterReleaseVersions object. It supports the following optional named parameters:

An integer indicating the page to obtain the MasterReleaseVersion objects of. Defaults to 1.

An integer indicating the maximum number of items per page to be produced. Defaults to what was (implicitely) specified with the creation of the Discogs::API object.

A string indicating the format of the MasterReleaseVersion objects to be returned. Defaults to no limitation on format.

A string indicating the label of the MasterReleaseVersion objects to be returned. Defaults to no limitation on label.

An integer indicating the year of release of the MasterReleaseVersion objects to be returned. Defaults to no limitation on year.

A string indicating the country of the MasterReleaseVersion objects to be returned. Defaults to no limitation on country.

A string indicating how the MasterReleaseVersion objects to be returned. Defaults to no sorting. The following fields can be specified:

released title format label catno country

A string indicating the sort order of any sort action to be performed on the MasterReleaseVersion objects to be returned. Defaults to "asc". The following fields can be specified:

asc desc

release

my $release = $discogs.release(249504, currency => "EUR");

Fetch the information for the given release ID and return that in an Discogs::API::Release object. Optionally takes a named currency parameter that should have one of the supported currency strings. This defaults to the value for the currency that was (implicitely) specified when creating the Discogs::API object.

Perform a general search in the Discogs database, optionally searching specific parts. Returns a Discogs::API::SearchResults object.

my $search = $discogs.search(
  "nirvana",              # optional, general query
  page     => 2,          # page number, default: 1
  per-page => 25,         # items per page, default: object

  type => "release",      # optional search for type only
  title => "nits - urk",  # optional artist - release search query
  release-title => "urk", # optional search for to release name
  credit => "kurt",       # optional search for credits
  artist => "nirvana",    # optional search for artist name
  anv => "nirvana",       # optional search for artist name variation
  label => "Foo",         # optional search for label
  genre => "rock",        # optional search for genre
  style => "grunge",      # optional search for style
  country => "belgium",   # optional search for country
  year => 1992,           # optional search for year of release
  format => "CD",         # optional search for format
  catno => "DGCD-24425",  # optional search for catalog number
  barcode => "7 2064-24425-2 4", # optional search for barcode
  track => "smells like", # optional search for title of track
  submitter => "milKt",   # optional search for username of submitter
  contributor => "liz",   # optional search for username of contributor
);

An integer indicating the page to obtain the Discogs::API::SearchResult objects of. Defaults to 1.

An integer indicating the maximum number of items per page to be produced. Defaults to what was (implicitely) specified with the creation of the Discogs::API object.

The string to be searched for.

A string to determine which main fields to be searched. Should be one of:

release master artist label

Special formatted string to search for an artist / release title combination. The hyphen indicates the separation, so e.g. "nirvana - nevermind".

Search for given string as title of a release only.

Search for given string as credit for a release only.

Search for given string as main name of artist only.

Search for given string as alternative name variation of artist only.

Search for given string as name of label only.

Search for given string as name of genre only.

Search for given string as name of style only.

Search for given string as name of country only.

Search for given year of release only.

Search for given string as format only.

Search for given string as catalog number only.

Search for given string as barcode only.

Search for given string as track title only.

Search for given string as the username of a submitter only.

Search for given string as the username of a contributor only.

user-release-rating

my $rating = $discogs.user-release-rating(249504, "username");

my $rating = $discogs.user-release-rating($release, "username");

my $rating = $discogs.user-release-rating(249504, $user);

my $rating = $discogs.user-release-rating($release, $user);

Fetch the information about the rating for a given release and a username and return that as a Discogs::API::UserReleaseRating object.

The release parameter can either be given as an unsigned integer, or as an Discogs::API::Release object. The user parameter can either be given as a string, or as an Discogs::API::User object.

ADDITIONAL CLASSES

In alphatical order:

Discogs::API::Artist

String indicating the quality of the data.

The artist ID.

A list of Discogs::API::Image objects for this artist.

A list of Discogs::API::Member objects of this artist.

String with the main name of the artist.

A list of strings with alternate names / spellings of the artist.

A string with a profile of the artist.

The URL to fetch all of the releases of this Artist using the Discogs API.

The URL to fetch this object using the Discogs API.

The URL to access information about this artist on the Discogs website.

A list of URLs associated with this artist.

Discogs::API::ArtistReleases

This object is usually created as part of a Discogs::API::ArtistReleases object.

A string with the name of the artist of this release.

An unsigned integer indicating the number of people in the Discogs community that have this release.

An integer indicating the number of people in the Discogs community that want to have this release.

A string indicating the format of this release.

The ID of this release.

The ID of the associated Discogs::API::Label object.

The URL to obtain the information about this release using the Discogs API.

A string indicating the role of this release compared to its Discogs::API::MasterRelease object.

An Discogs::API::Stats object with user and community statistics. It is probably easier to use the short-cut methods community-in-collection, community-in-wantlist, user-in-collection, user-in-wantlist.

A string indicating the status of the information about this release.

A URL for a thumbnail image associated with this release.

A string with the title of this release.

A string indicating the type of release, e.g. "master".

A boolean indicating whether the current user has this release.

A boolean indicating whether the current user wants to have this release.

An unsigned integer for the year this release was released.

Discogs::API::ArtistReleases

Retrieves a list of all Discogs::API::ArtistRelease objects that were made by the given artist ID, and pagination settings.

Returns the first page of the information of this object, or Nil if already on the first page.

The URL to fetch the data of the first page of this object using the Discogs API. Returns Nil if the there is only one page of information available.

An integer indicating the total number of Discogs::API::LabelRelease objects there are available for this artist.

Returns the last page of the information of this object, or Nil if already on the last page.

The URL to fetch the data of the last page of this object using the Discogs API. Returns Nil if already on the last page.

Returns the next page of the information of this object, or Nil if already on the last page.

The URL to fetch the data of the next page of this object using the Discogs API. Returns Nil if already on the last page.

An integer indicating the page number of this object.

An integer indicating the number of pages of information available for this object.

The Discogs::API::Pagination object associted with this object. Usually not needed, as its information is available in shortcut methods.

An integer representing the maximum number of items on a page.

Returns the previous page of the information of this object, or Nil if already on the first page.

The URL to fetch the data of the previous page of this object using the Discogs API. Returns Nil if already on the first page.

A list of Discogs::API::ArtistRelease objects.

Discogs::API::ArtistSummary

A string with the artist name variation.

The artist ID.

A string indicating joining.

A string with the name.

The URL to fetch the full artist information using the Discogs API.

A string indicating the role of this artist.

A string indicating the tracks on which the artist participated.

Discogs::API::CatalogEntry

An object that describes entities in the Discogs database that are also referred to as Labels. Usually created indirectly by other objects.

A string with the identifying catalog number.

An unsigned integer with a description of the type of this entity.

A string with the name of this entity.

The numeric ID of this catalog entry.

The name of this catalog entry.

The URL to fetch the full information of this catalog entry using the Discogs API.

Discogs::API::Community

Usually obtained indirectly from the community method on the Discogs::API::Release object. These methods can also be called directly on the Discogs::API::Release object, as these are also provided as shortcuts.

A list of Discogs::API::User objects of contributors to the community information of this release.

A string describing the quality of the data of this release.

An integer indicating how many community members have this release.

A rational number indicating the rating the members of the community have given this release.

The status of the information about this release in the community.

The Discogs::API::User object for the submitter of this release.

An integer indicating how many community members want to have this release.

Discogs::API::CommunityReleaseRating

The rating of the Discogs community for a specific release.

A rational number indicating the rating.

An unsigned integer for the ID of the release.

Discogs::API::FilterFacet

An object usually created as part of the Discogs::API::MasterReleaseVersions object.

A Bool indicating whether more than one value is allowed in values.

The ID.

The title.

A list of one or more values.

Discogs::API::Filters

An object usually created as part of the Discogs::API::MasterReleaseVersions object.

A hash indicating which Discogs::API::FilterFacets have been applied.

A hash of unsigned integer indicating how many entries are available.

Discogs::API::Format

An object that describes the format of a release. Usually created by other objects.

A list of strings describing this format.

The name of this format.

An unsigned integer indicating the number of copies that are available in this format in the Discogs Marketplace.

Discogs::API::Identifier

A generic object created by other objects.

A string indicating the type.

A string indicating the value.

Discogs::API::Image

An object describing an image in the Discogs database. Usually created by other objects.

The height of the image in pixels.

The URL to access this image on the Discogs image website.

String with the type for this image: either "primary" or "secondary".

The URL to access this image on the Discogs image website.

The URL to access a 150x150 pixel version of the image on the Discogs image website.

The width of the image in pixels.

Discogs::API::Label

The Label object represents a label, company, recording studio, location, or other entity involved with Discogs::API::Artists and Discogs::API::Releases. Labels were recently expanded in scope to include things that aren't labels – the name is an artifact of this history.

A string with contact information for this label.

A string describing the quality of the data of this label.

The ID of this label.

A list of Discogs::API::Image objects for this label.

A string with the name of this label.

A string with a profile about this label.

A URL to retrieve all the Discogs::API::Release objects associated with this label using the Discogs API.

The URL to obtain the information about this label using the Discogs API.

A list of Discogs::API::SubLabel objects describing subdivisions of this label.

A URL to see the information of this label on the Discogs website.

A list of URLs related to this label.

Discogs::API::LabelRelease

This object is usually created as part of a Discogs::API::LabelReleases object.

A string with the name of the artist of this release.

A string with the catalog number of this release.

A string with the format of this release.

An unsigned integer for the ID of this release.

A URL to get the full release information of this release using the Discogs API.

The status of the information about this release in the community.

A URL for a thumbnail image for this release.

A string for the title of this release.

An unsigned integer indicating the year this release was released.

Discogs::API::LabelReleases

Retrieves a list of all Discogs::API::LabelRelease objects that are versions of a given master release ID, and pagination settings.

Returns the first page of the information of this object, or Nil if already on the first page.

The URL to fetch the data of the first page of this object using the Discogs API. Returns Nil if the there is only one page of information available.

An integer indicating the total number of Discogs::API::LabelRelease objects there are available for label.

Returns the last page of the information of this object, or Nil if already on the last page.

The URL to fetch the data of the last page of this object using the Discogs API. Returns Nil if already on the last page.

Returns the next page of the information of this object, or Nil if already on the last page.

The URL to fetch the data of the next page of this object using the Discogs API. Returns Nil if already on the last page.

An integer indicating the page number of this object.

An integer indicating the number of pages of information available for this object.

The Discogs::API::Pagination object associted with this object. Usually not needed, as its information is available in shortcut methods.

An integer representing the maximum number of items on a page.

Returns the previous page of the information of this object, or Nil if already on the first page.

The URL to fetch the data of the previous page of this object using the Discogs API. Returns Nil if already on the first page.

A list of Discogs::API::LabelRelease objects.

Discogs::API::MasterRelease

The MasterRelease object represents a set of similar Discogs::API::Releases. Master releases have a "main release" which is often the chronologically earliest.

A list of Discogs::API::ArtistSummary objects for this master release.

A string describing the quality of the data of this master release.

Fetch the main Discogs::API::Release of this main release using the Discogs API.

Fetch the most recent Discogs::API::Release of this main release using the Discogs API.

A list of strings describing the genres of this master release.

The ID of this master release.

A list if Discogs::API::Image objects associated with this master release.

The lowest price seen for any of the releases of this master release on the Discogs Marketplace, in the currency that was (implicitely) specified when the Discogs::API object was made.

The ID of the Discogs::API::Release object that is considered to be the main release.

The URL to access the data of the main release using the Discogs API.

The ID of the Discogs::API::Release object that is considered to be the most recent release.

The URL to access the data of the most recent release using the Discogs API.

An integer indicating the number of copies of any release of this main release, that are for sale on the Discogs Marketplace.

The URL to obtain the information about this master release using the Discogs API.

A list of strings describing the styles of this master release.

A string with the title of this master release.

A list of Discogs::API::Track objects describing the tracks of this master release.

A URL to see the information of this master release on the Discogs website.

A URL to fetch the Discogs::API::MasterReleaseVersion objects for this master release using the Discogs API.

A list of Discogs::API::Video objects associated with this master release.

An integer for the year in which this master release was released.

Discogs::API::MasterReleaseVersion

This object is usually created as part of the Discogs::API::MasterReleaseVersions object.

The catalog number of the associated Discogs::API::CatalogEntry object.

An unsigned integer indicating the number of people in the Discogs community that have this release.

An unsigned integer indicating the number of people in the Discogs community that want to have this release.

A string indicating the country of this release.

A string indicating the format of this release.

The ID of this release.

The ID of the associated Discogs::API::Label object.

A string indicating the major formats in which this release is available.

An unsigned integer indicating the year that this release was released.

The URL to obtain the information about this release using the Discogs API.

An Discogs::API::Stats object with user and community statistics. It is probably easier to use the short-cut methods community-in-collection, community-in-wantlist, user-in-collection, user-in-wantlist.

A string indicating the status of the information about this release.

A URL for a thumbnail image associated with this release.

A string with the title of this release.

An unsigned integer indicating whether the current user has this release.

An unsigned integer indicating whether the current user wants to have this release.

Discogs::API::MasterReleaseVersions

Retrieves a list of all Discogs::API::MasterReleaseVersion objects that are versions of a given master release ID, and pagination settings.

A list of Discogs::API::FilterFacet objects associated with this object.

A list of Discogs::API::Filter objects associated with this object.

Returns the first page of the information of this object, or Nil if already on the first page.

The URL to fetch the data of the first page of this object using the Discogs API. Returns Nil if the there is only one page of information available.

An integer indicating the total number of Discogs::API::MasterReleaseVersion objects there are available for this master release.

Returns the last page of the information of this object, or Nil if already on the last page.

The URL to fetch the data of the last page of this object using the Discogs API. Returns Nil if already on the last page.

Returns the next page of the information of this object, or Nil if already on the last page.

The URL to fetch the data of the next page of this object using the Discogs API. Returns Nil if already on the last page.

An integer indicating the page number of this object.

An integer indicating the number of pages of information available for this object.

The Discogs::API::Pagination object associted with this object. Usually not needed, as its information is available in shortcut methods.

An integer representing the maximum number of items on a page.

Returns the previous page of the information of this object, or Nil if already on the first page.

The URL to fetch the data of the previous page of this object using the Discogs API. Returns Nil if already on the first page.

A list of Discogs::API::MasterReleaseVersion objects.

Discogs::API::Member

A Boolean indicating whether this member is still active with the Discogs::API::Artist it is associated with.

The ID of this member as a separate Discogs::API::Artist.

The name of this member.

The URL to fetch Discogs::API::Artist object of this member using the Discogs API.

Discogs::API::Pagination

This object is usually created as part of some kind of search result that allows for pagination.

An integer with the number of items in this page.

An integer with the page number of the information of this page.

An integer with the total number of pages available with the current per-page value.

An integer with the maximum number of items per page.

A hash of URLs for moving between pages. Usually accessed with shortcut methods of the object incorporating this Pagination object.

Discogs::API::Rating

A rating, usually automatically created with a Discogs::API::Community object.

A rational value indicating the average rating of the object associated with the associated Discogs::API::Community object.

An integer value indicating the number of votes cast by community members.

Discogs::API::Release

The Discogs::API::Release object represents a particular physical or digital object released by one or more Discogs::API::Artists.

A list of Discogs::API::ArtistSummary objects for this release.

A rational value indicating the average rating of this release by community members.

A string with the artists, sorted.

The Discogs::API::Community object with all of the Discogs community information associated with this release.

A list of Discogs::API::CatalogEntry objects of entities that had something to do with this release.

A list of Discogs::API::User objects of contributors to the community information of this release.

An integer value indicating the number of votes cast by community members about this release.

A string with the country of origin of this release.

String indicating the quality of the data.

A Date object of the date this release was added to the Discogs system.

A Date object of the date this release was last changed in the Discogs system.

An integer value to indicate the weight of this release compared to other release in the Discogs::API::MasterRelease.

A list of Discogs::API::ArtistSummary objects for additional artists in this release.

Fetch the associated Discogs::API::MasterRelease object.

An integer value for the number of formats available for this release.

A list of Discogs::API::Format objects that are available for this release.

A list of strings describing the genres of this release.

An integer indicating how many community members have this release.

The integer value that identifies this release.

A list of Discogs::API::Identifier objects for this release.

A list of Discogs::API::Image objects for this release.

A list of Discogs::API::CatalogEntry objects that serve as a "label" for this release.

A rational value indicating the lowest price if this release is available in the Discogs Marketplace in the currency that was (implicitely) specified when creating the Discogs::API object.

The integer value of the Discogs::API::MasterRelease id of this release.

The URL to fetch the master release of this release using the Discogs API.

A string with additional notes about this release.

An integer value indicating the number of copies for sale for this release on the Discogs Marketplace.

A rational number indicating the rating the members of the community have given this release.

A string with a machine readable for of the date this release was released.

A string with a human readable form of the date this release was released.

The URL to fetch this Discogs::API::Release object using the Discogs API.

A list of Discogs::API::CatalogEntry objects of which this release is a part of.

A string indicating the status of the information of this release.

A list of strings indicating the styles of this release.

The Discogs::API::User object for the submitter of this release.

A URL for a thumbnail image for this release.

A string with the title of this release.

A list of Discogs::API::Track objects of this release.

The URL to access this release on the Discogs image website.

A list of Discogs::API::Video objects associated with this release.

An integer indicating how many community members want to have this release.

An integer value of the year this release was released.

Discogs::API::SearchResult

This object is usually created as part of a Discogs::API::SearchResults object.

A URL with an image describing this search result.

An unsigned integer for the ID associated with a release.

An unsigned integer for the ID associated with a master release.

A URL to fetch the information of the associated master release using the Discogs API.

A URL to fetch the full information for this entry using the Discogs API.

A URL for a thumbail image for this entry.

A string with the title associated for this entry.

A string indicating the type of entry. Can be any of:

release master artist label

A URI to fetch the full information for this release on the Discogs website.

A Discogs::API::StatsData object with data. It's probably easier to use the user-in-collection and user-in-wantlist methods.

An unsigned integer indicating whether the current user has this entry.

An unsigned integer indicating whether the current user wants to have this entry.

Discogs::API::SearchResults

Retrieves a list of Discogs::API::Searchresult objects that match the given query parameters, and pagination settings.

Returns the first page of the information of this object, or Nil if already on the first page.

The URL to fetch the data of the first page of this object using the Discogs API. Returns Nil if the there is only one page of information available.

An integer indicating the total number of Discogs::API::SearchResult objects there are available.

Returns the last page of the information of this object, or Nil if already on the last page.

The URL to fetch the data of the last page of this object using the Discogs API. Returns Nil if already on the last page.

Returns the next page of the information of this object, or Nil if already on the last page.

The URL to fetch the data of the next page of this object using the Discogs API. Returns Nil if already on the last page.

An integer indicating the page number of this object.

An integer indicating the number of pages of information available for this object.

The Discogs::API::Pagination object associted with this object. Usually not needed, as its information is available in shortcut methods.

An integer representing the maximum number of items on a page.

Returns the previous page of the information of this object, or Nil if already on the first page.

The URL to fetch the data of the previous page of this object using the Discogs API. Returns Nil if already on the first page.

A list of Discogs::API::SearchResult objects.

Discogs::API::Stats

This object is usually created as part of the Discogs::API::MasterReleaseVersion object.

The Discogs::API::StatsData object with statistics of the current user.

The Discogs::API::StatsData object with statistics of the Discogs community.

Discogs::API::StatsData

This object is usually created as part of the Discogs::API::Stats object.

An unsigned integer indicating how many people in the Discogs community have the associated Discogs::API::MasterReleaseVersion in their collection.

An unsigned integer indicating how many people in the Discogs community have the associated Discogs::API::MasterReleaseVersion in their want list.

Discogs::API::SubLabel

This object is usually created as part of the Discogs::API::Label object.

The ID of this sublabel.

A string with the name of this sublabel.

The URL to get the full Discogs::API::Label information of this SubLabel using the Discogs API.

Discogs::API::Track

The information about a track on a release, usually created automatically as part of a Discogs::API::Release object.

A string indicating the duration of this track, usually as "mm:ss".

A string indication the position of this track, "A" side or "B" side.

A string containing the title of this track.

A string to indicate the type of track, usually "track".

Discogs::API::User

This object is usually created as part of other Discogs::API objects.

The URL to get the full Discogs::API::User information of this user using the Discogs API.

The string with which the Discogs user is identified.

Discogs::API::UserReleaseRating

Provide the rating a user has given a release.

An unsigned integerr with the rating by this user for a release.

An unsigned integer for the release ID.

A string for the username.

Discogs::API::Value

An object usually created as part of the Discogs::API::FilterFacet object.

An integer indicating an amount.

A string for the title of this object.

A string indicating the value of this object.

Discogs::API::Video

The information about a video, usually created automatically as part of a Discogs::API::Release object.

A string containing the description of this Video object.

A string indicating the duration of the video, usually as "mm:ss".

A Bool indicating whether this video can be embedded.

A string containing the title (usually "artist - title") of this Video object.

The URL of the video, usually a link to a YouTube video.

AUTHOR

Elizabeth Mattijsen liz@raku.rocks

Source can be located at: https://github.com/lizmat/Discogs-API . Comments and Pull Requests are welcome.

COPYRIGHT AND LICENSE

Copyright 2020, 2021 Elizabeth Mattijsen

This library is free software; you can redistribute it and/or modify it under the Artistic License 2.0.