type: object
nullable: false
properties:
  track_id:
    type: string
    description: 'Apple Music track id'
    example: '1577988429'
  name:
    $ref: '../properties/track_name.yaml'
  image_url:
    $ref: '../properties/apple_track_image_url.yaml'
  release_date:
    type: string
    format: date
    description: 'Track release date from Apple'
  is_sony:
    $ref: '../properties/is_sony.yaml'
  isrc:
    $ref: '../properties/isrc.yaml'
  artists:
    type: array
    description: 'Array containing list of artists.'
    items:
      $ref: './AppleArtist.yaml'
  album:
    $ref: './AppleAlbum.yaml'
