get:
  tags:
    - All Resources
    - Tracks
  summary: 'Get one Track'
  operationId: tracks.get
  description: >-
    Resource route for getting a single `Track`
    with filtering based on provided parameters
  security:
    - bearerAuth: []
  parameters:
    - $ref: '../parameters/track_id_path.yaml'
    - $ref: '../parameters/include_tracks.yaml'
  responses:
    200:
      $ref: '../responses/TrackResponse.yaml'
    400:
      $ref: '../responses/InvalidInput.yaml'
    401:
      $ref: '../responses/Unauthorized.yaml'
    404:
      $ref: '../responses/NotFoundError.yaml'
    500:
      $ref: '../responses/InternalError.yaml'