Common/descriptor/v1.1/Subgenre2

Jump to: navigation, search

Subgenre

Contains information about a music or movie subgenre.

Elements

NameTypeDescription
description string Description of the subgenre.
genre genre [ ] Genre of the subgenre.
id string Database ID of the subgenre.
name string The subgenre.
styles style [ ] Music styles in a music subgenre, returned only if requested by an include argument.
type string Category of the subgenre:
  • Movie subgenre
  • Music subgenre

XML Response Example

<subgenre>
  <id>MA0000002544</id>
  <name>Club/Dance</name>
  <type>Music SubGenre</type>
  <description>Club/Dance music comes in many different forms, from disco to hip-hop. Though there have been various dance crazes throughout the history of popular music, club/dance music became its own genre in the mid-'70s, as soul mutated into disco and whole clubs were devoted to dancing. In the late '70s, dance clubs played disco, but by the end of the decade, disco was mutating into a number of different genres. All of the genres were collected under the catch-all term "dance," though there were distinct differences between dance-pop, hip-hop, house, and techno, among other subgenres. What tied them all together was their emphasis on rhythm -- in each dance subgenre, the beat remains all-important.</description>
  <styles>
    <style>
      <id>MA0000011923</id>
      <name>Bass Music</name>
      <type>Music Style</type>
    </style>
    <style>
      <id>MA0000005013</id>
      <name>Euro-Dance</name>
      <type>Music Style</type>
    </style>
    <style>
      <id>MA0000012074</id>
      <name>Hi-NRG</name>
      <type>Music Style</type>
    </style>
  </styles>
  <genre>
    <id>MA0000002572</id>
    <name>Electronic</name>
  </genre>
</subgenre>

JSON Response Example

    {
      "id": "MA0000002544",
      "name": "Club/Dance",
      "type": "Music SubGenre",
      "description": "Club/Dance music comes in many different forms, from disco to hip-hop. Though there have been various dance crazes throughout the history of popular music, club/dance music became its own genre in the mid-'70s, as soul mutated into disco and whole clubs were devoted to dancing. In the late '70s, dance clubs played disco, but by the end of the decade, disco was mutating into a number of different genres. All of the genres were collected under the catch-all term \"dance,\" though there were distinct differences between dance-pop, hip-hop, house, and techno, among other subgenres. What tied them all together was their emphasis on rhythm -- in each dance subgenre, the beat remains all-important.",
      "styles": [
        {
          "id": "MA0000011923",
          "name": "Bass Music",
          "type": "Music Style"
        },
        {
          "id": "MA0000005013",
          "name": "Euro-Dance",
          "type": "Music Style"
        },
        {
          "id": "MA0000012074",
          "name": "Hi-NRG",
          "type": "Music Style"
        }
      ],
      "genre": {
        "id": "MA0000002572",
        "name": "Electronic"
      }
    }
 
Personal tools