openapi: 3.0.1
info:
  title: Test Base API
  version: 1.0.0
paths:
  /test:
    post:
      operationId: createTest
      parameters:
        - in: query
          name: name
          schema:
            type: string
            minLength: 3
      responses:
        '200':
          description: OK
