openapi: 3.0.0
info:
  title: Test API
  version: 1.0.0
paths:
  /test:
    get:
      operationId: getTest
      parameters:
        - name: status
          in: query
          schema:
            type: string
            enum:
              - busy
              - offline
      responses:
        '200':
          description: OK
