get:
  summary: Fetches data of all registered users
  operationId: rest.users.index
  security:
    - jwt: []
  responses:
    200:
      description: Successfull fetch
      content:
        application/json:
          schema:
            $ref: '../components/components.yaml#/components/schemas/list_of_users'
    404:
      $ref: '../components/components.yaml#/components/responses/404NotFound'
    default:
      $ref: '../components/components.yaml#/components/responses/UnexpectedError'