{ "openapi": "3.0.0", "info": { "title": "Path Grouping Test API", "description": "API for testing path-based folder grouping", "version": "1.0.0" }, "servers": [ { "url": "https://api.example.com", "description": "Test server" } ], "paths": { "/users": { "get": { "summary": "List users", "responses": { "200": { "description": "Success" } } } }, "/users/{id}": { "get": { "summary": "Get user by ID", "parameters": [ { "name": "id", "in": "path", "required": true, "schema": { "type": "string" } } ], "responses": { "200": { "description": "Success" } } } }, "/products": { "get": { "summary": "List products", "responses": { "200": { "description": "Success" } } } }, "/products/{id}": { "get": { "summary": "Get product by ID", "parameters": [ { "name": "id", "in": "path", "required": true, "schema": { "type": "string" } } ], "responses": { "200": { "description": "Success" } } } } } }