This repository has been archived by the owner on Dec 27, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 113
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: added concat and separator option to folder tags calculation
- Loading branch information
Showing
4 changed files
with
433 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,204 @@ | ||
openapi: 3.0.0 | ||
info: | ||
title: Folder Collection | ||
description: Just a simple collection for test | ||
version: 2.3.0 | ||
servers: | ||
- url: https://api.io | ||
tags: | ||
- name: Users | ||
description: Operations at User level | ||
- name: Admin | ||
description: Admin operations for Post items | ||
- name: Posts | ||
description: Operations for Post items | ||
- name: Folder 1 | ||
description: Folder 1 description | ||
- name: Folder 2 | ||
description: Folder 2 description | ||
- name: Folder 3 | ||
description: Folder 3 description | ||
- name: Folder 4 | ||
description: Folder 4 description | ||
- name: Folder 5 | ||
description: Folder 5 description | ||
- name: Empty Folder | ||
paths: | ||
/users/admin/roles: | ||
get: | ||
tags: | ||
- Admin | ||
summary: Get user roles | ||
description: This is a get request in a nested folder | ||
responses: | ||
'200': | ||
description: Successful response | ||
content: | ||
application/json: {} | ||
/users: | ||
post: | ||
tags: | ||
- Users | ||
summary: Create a user | ||
description: This is a post request with json body | ||
requestBody: | ||
content: | ||
application/json: | ||
schema: | ||
type: object | ||
example: | ||
example: field | ||
other: | ||
data1: 'yes' | ||
data2: 'no' | ||
responses: | ||
'200': | ||
description: Successful response | ||
content: | ||
application/json: {} | ||
/customer: | ||
post: | ||
tags: | ||
- Users | ||
summary: Create a customer | ||
description: This is a post request with json body for create a customer | ||
requestBody: | ||
content: | ||
application/json: | ||
schema: | ||
type: object | ||
example: | ||
example: field | ||
other: | ||
data1: 'yes' | ||
data2: 'no' | ||
responses: | ||
'200': | ||
description: Successful response | ||
content: | ||
application/json: {} | ||
/posts/admin/settings: | ||
get: | ||
tags: | ||
- Admin | ||
summary: Get posts settings | ||
description: This is a get request in a nested folder | ||
responses: | ||
'200': | ||
description: Successful response | ||
content: | ||
application/json: {} | ||
/posts: | ||
post: | ||
tags: | ||
- Posts | ||
summary: Create a post | ||
requestBody: | ||
content: | ||
text/plain: {} | ||
responses: | ||
'200': | ||
description: Successful response | ||
content: | ||
application/json: {} | ||
/req4: | ||
post: | ||
tags: | ||
- Folder 5 | ||
summary: Request 4 | ||
description: This is a post request with json body | ||
requestBody: | ||
content: | ||
application/json: | ||
schema: | ||
type: object | ||
example: | ||
example: field | ||
other: | ||
data1: 'yes' | ||
data2: 'no' | ||
responses: | ||
'200': | ||
description: Successful response | ||
content: | ||
application/json: {} | ||
/req3: | ||
post: | ||
tags: | ||
- Folder 3 | ||
summary: Request 3 | ||
description: This is a post request with json body | ||
requestBody: | ||
content: | ||
application/json: | ||
schema: | ||
type: object | ||
example: | ||
example: field | ||
other: | ||
data1: 'yes' | ||
data2: 'no' | ||
responses: | ||
'200': | ||
description: Successful response | ||
content: | ||
application/json: {} | ||
/req2: | ||
post: | ||
tags: | ||
- Folder 2 | ||
summary: Request 2 | ||
description: This is a post request with json body | ||
requestBody: | ||
content: | ||
application/json: | ||
schema: | ||
type: object | ||
example: | ||
example: field | ||
other: | ||
data1: 'yes' | ||
data2: 'no' | ||
responses: | ||
'200': | ||
description: Successful response | ||
content: | ||
application/json: {} | ||
/req1: | ||
post: | ||
tags: | ||
- Folder 1 | ||
summary: Request 1 | ||
description: This is a post request with json body | ||
requestBody: | ||
content: | ||
application/json: | ||
schema: | ||
type: object | ||
example: | ||
example: field | ||
other: | ||
data1: 'yes' | ||
data2: 'no' | ||
responses: | ||
'200': | ||
description: Successful response | ||
content: | ||
application/json: {} | ||
/info: | ||
post: | ||
tags: | ||
- default | ||
summary: Create a info | ||
requestBody: | ||
content: | ||
application/json: | ||
schema: | ||
type: object | ||
example: | ||
test: here | ||
responses: | ||
'200': | ||
description: Successful response | ||
content: | ||
application/json: {} |
Oops, something went wrong.