get:
  tags:
    - All Resources
    - Products
  summary: 'Search for Products'
  operationId: products.search
  description: >-
    Resource route for getting a list of `Product`
    with filtering based on provided parameters
  security:
    - bearerAuth: []
  parameters:
    - $ref: '../parameters/artist_id.yaml'
    - $ref: '../parameters/track_id.yaml'
    - $ref: '../parameters/project_id.yaml'
    - $ref: '../parameters/isrc.yaml'
    - $ref: '../parameters/product_version_no.yaml'
    - $ref: '../parameters/product_family_no.yaml'
    - $ref: '../parameters/config_cat_key.yaml'
    - $ref: '../parameters/config_key.yaml'
    - $ref: '../parameters/is_explicit_nullable.yaml'
    - $ref: '../parameters/limit.yaml'
    - $ref: '../parameters/offset.yaml'
    - $ref: '../parameters/sort_by_products.yaml'
    - $ref: '../parameters/sort_order.yaml'
  responses:
    200:
      $ref: '../responses/ProductsResponse.yaml'
    400:
      $ref: '../responses/InvalidInput.yaml'
    401:
      $ref: '../responses/Unauthorized.yaml'
    500:
      $ref: '../responses/InternalError.yaml'