Files
bruno/tests/import/openapi/fixtures/openapi-duplicate-operation-name.yaml
Pooja e1b4043ca5 fix: openapi request import (#5586)
* fix: openapi request import
* fix: js sandbox mode selector doesn't show up while opening new collections in playwright tests

---------

Co-authored-by: Bijin Bruno <bijin@usebruno.com>
2025-09-25 13:06:02 +05:30

45 lines
1.1 KiB
YAML

openapi: 3.0.0
info:
title: Duplicate Test Collection
version: 1.0.0
description: Test collection for handling duplicate operation names
servers:
- url: https://api.example.com
description: Example server
paths:
/users:
get:
summary: 'Get Users'
description: 'Get all users'
operationId: getUsers
responses:
'200':
description: Success
content:
application/json:
schema:
type: object
post:
summary: 'Get Users'
description: 'Create a new user (same summary as GET)'
operationId: createUser
responses:
'201':
description: Created
content:
application/json:
schema:
type: object
/products:
get:
summary: 'Get Users'
description: 'Get all products (same summary as users GET)'
operationId: getProducts
responses:
'200':
description: Success
content:
application/json:
schema:
type: object