-
Notifications
You must be signed in to change notification settings - Fork 284
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fixes #1025 - tag not showing on navigation bar. and generated 9.3.6 …
…build
- Loading branch information
Showing
21 changed files
with
61 additions
and
13,269 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
Binary file not shown.
Large diffs are not rendered by default.
Oops, something went wrong.
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
Binary file not shown.
Binary file not shown.
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file not shown.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,188 +1,24 @@ | ||
openapi: 3.0.0 | ||
info: | ||
description: Contains all data types | ||
version: 1.0.0 | ||
title: Testing different data-types | ||
title: Some API | ||
version: 0.1.0 | ||
paths: | ||
/nested-object-in-request-body: | ||
post: | ||
tags: | ||
- Test with various data types | ||
summary: Request Body accepting a JSON | ||
requestBody: | ||
content: | ||
application/json: | ||
schema: | ||
$ref: "#/components/schemas/test" | ||
responses: | ||
'200': | ||
description: 'Resp' | ||
content: | ||
application/json: | ||
schema: | ||
$ref: '#/components/schemas/testResponse' | ||
/foo: | ||
post: | ||
requestBody: | ||
content: | ||
application/json: | ||
schema: | ||
type: object | ||
additionalProperties: | ||
/some_path: | ||
get: | ||
parameters: | ||
- name: params | ||
in: query | ||
style: form | ||
explode: true | ||
schema: | ||
type: object | ||
properties: | ||
var1: | ||
type: string | ||
description: Something about var1 | ||
var2: | ||
type: integer | ||
patternProperties: | ||
S_: | ||
type: integer | ||
properties: | ||
foo: | ||
type: string | ||
format: date-time | ||
required: true | ||
example: | ||
foo: "2025-11-18T12:59:50.033Z" | ||
components: | ||
schemas: | ||
category: | ||
type: object | ||
properties: | ||
catId: | ||
description: Category ID | ||
allOf: | ||
- $ref: '#/components/schemas/id' | ||
name: | ||
description: Category name | ||
type: string | ||
deprecated: true | ||
id: | ||
type: string | ||
format: uuid | ||
person: | ||
type: object | ||
required: | ||
- name | ||
- photoUrls | ||
properties: | ||
primaryEmail: | ||
type: string | ||
format: email | ||
dob: | ||
description: Date of Birth | ||
type: string | ||
format: date | ||
id: | ||
title: Unique ID | ||
description: SSN | ||
allOf: | ||
- $ref: '#/components/schemas/id' | ||
category: | ||
title: Person Category | ||
description: Categories this person belongs to | ||
allOf: | ||
- $ref: '#/components/schemas/category' | ||
country: | ||
type: object | ||
deprecated: true | ||
properties: | ||
countryCode: | ||
type: string | ||
countryName: | ||
type: string | ||
dependentIds: | ||
type: array | ||
deprecated: true | ||
description: IDs of Dependents . | ||
items: | ||
type: integer | ||
example: | ||
- 278 | ||
- 279 | ||
- 280 | ||
- 281 | ||
name: | ||
description: Name of the person | ||
type: string | ||
minLength: 4 | ||
examples: | ||
empty: | ||
value: | ||
summary: No Name | ||
male-name: | ||
value: James | ||
summary: Male name | ||
female-name: | ||
value: Ria | ||
summary: Female Name | ||
gender-nutral-name: | ||
value: Charlie | ||
summary: Gender Neutral Name | ||
photoUrls: | ||
description: The list of URL to a cute photos featuring pet | ||
type: array | ||
maxItems: 20 | ||
items: | ||
type: string | ||
format: url | ||
tags: | ||
title: TAGS | ||
description: Tags attached to the person | ||
type: array | ||
minItems: 1 | ||
items: | ||
$ref: '#/components/schemas/tag' | ||
maritalStatus: | ||
type: string | ||
description: Marital status in case of adult | ||
enum: | ||
- married | ||
- unmarried | ||
- widowed | ||
phone: | ||
description: phone number in international format | ||
type: string | ||
pattern: '/^\+(?:[0-9]-?){6,14}[0-9]$/' | ||
example: +1-202-555-0192 | ||
nullable: true | ||
tag: | ||
type: object | ||
properties: | ||
id: | ||
description: Tag ID | ||
allOf: | ||
- $ref: '#/components/schemas/id' | ||
name: | ||
description: Tag name | ||
type: string | ||
minLength: 1 | ||
test: | ||
type: object | ||
properties: | ||
photoUrls: | ||
description: The list of URL to a cute photos featuring pet | ||
type: array | ||
maxItems: 20 | ||
items: | ||
type: string | ||
format: url | ||
testResponse: | ||
type: object | ||
required: | ||
- url | ||
- tags | ||
properties: | ||
url: | ||
type: string | ||
nullable: true | ||
description: Generated URL | ||
tags: | ||
type: array | ||
items: | ||
allOf: | ||
- $ref: '#/components/schemas/tag' | ||
nullable: true | ||
cat: | ||
allOf: | ||
- $ref: '#/components/schemas/category' | ||
nullable: true | ||
|
||
|
||
|
||
minimum: 10 | ||
maximum: 100 | ||
required: | ||
- var1 |
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
Oops, something went wrong.