type: object
nullable: false
properties:
  track_id:
    type: string
    description: 'Spotify track id'
    example: '4AAIAVjSyiq1N7SXKkwXZe'
  name:
    $ref: '../properties/track_name.yaml'
  image_url:
    $ref: '../properties/spotify_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'
  track_popularity:
    type: integer
    example: 55
    description: 'Track popularity from Spotify'
  artists:
    type: array
    description: 'Array containing list of artists'
    items:
      $ref: './SpotifyArtist.yaml'
  album:
    $ref: './SpotifyAlbum.yaml'