Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1275,7 +1275,7 @@
<snakeyaml.version>2.4</snakeyaml.version>
<spotbugs-plugin.version>3.1.12.2</spotbugs-plugin.version>
<swagger-parser-groupid.version>io.swagger.parser.v3</swagger-parser-groupid.version>
<swagger-parser.version>2.1.38</swagger-parser.version>
<swagger-parser.version>2.1.41</swagger-parser.version>
<testng.version>7.10.2</testng.version>
<violations-maven-plugin.version>1.34</violations-maven-plugin.version>
<wagon-ssh-external.version>3.4.3</wagon-ssh-external.version>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@ components:
items:
$ref: "#/components/schemas/FooRefOrValue"
type: array
default: null
description: Success
schemas:
Addressable:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ paths:
pattern: "^[a-zA-Z0-9]$"
type: string
type: array
default: null
style: simple
responses:
"200":
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@ components:
items:
$ref: "#/components/schemas/FooRefOrValue"
type: array
default: null
description: Success
schemas:
Addressable:
Expand Down
20 changes: 20 additions & 0 deletions samples/client/petstore/java/okhttp-gson-3.1/api/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,7 @@ paths:
- sold
type: string
type: array
default: null
style: form
responses:
"200":
Expand All @@ -113,11 +114,13 @@ paths:
items:
$ref: "#/components/schemas/Pet"
type: array
default: null
application/json:
schema:
items:
$ref: "#/components/schemas/Pet"
type: array
default: null
description: successful operation
"400":
description: Invalid status value
Expand Down Expand Up @@ -146,6 +149,7 @@ paths:
items:
type: string
type: array
default: null
style: form
responses:
"200":
Expand All @@ -155,11 +159,13 @@ paths:
items:
$ref: "#/components/schemas/Pet"
type: array
default: null
application/json:
schema:
items:
$ref: "#/components/schemas/Pet"
type: array
default: null
description: successful operation
"400":
description: Invalid tag value
Expand Down Expand Up @@ -770,6 +776,7 @@ paths:
items:
$ref: "#/components/schemas/CodesEnum"
type: array
default: null
style: form
responses:
"200":
Expand Down Expand Up @@ -822,6 +829,7 @@ paths:
nullable: true
nullable: true
type: array
default: null
description: ""
tags:
- fake
Expand Down Expand Up @@ -866,6 +874,7 @@ components:
items:
$ref: "#/components/schemas/User"
type: array
default: null
description: List of user object
required: true
Pet:
Expand Down Expand Up @@ -1023,13 +1032,15 @@ components:
xml:
name: photoUrl
wrapped: true
default: null
tags:
items:
$ref: "#/components/schemas/Tag"
type: array
xml:
name: tag
wrapped: true
default: null
status:
deprecated: true
description: pet status in the store
Expand Down Expand Up @@ -1103,13 +1114,15 @@ components:
items:
type: string
type: array
default: null
ref_array_prefix_items:
description: |
An item that was added to the queue.
items: {}
maxItems: 5
minItems: 3
type: array
default: null
HTTPValidationError:
properties: {}
title: HTTPValidationError
Expand All @@ -1121,6 +1134,7 @@ components:
maxItems: 5
minItems: 3
type: array
default: null
circular_reference_1:
properties:
prop1:
Expand All @@ -1139,14 +1153,17 @@ components:
items:
$ref: "#/components/schemas/Tag"
type: array
default: null
arrayFooTwo:
items:
$ref: "#/components/schemas/Tag"
type: array
default: null
arrayFooThree:
items:
$ref: "#/components/schemas/Tag"
type: array
default: null
CodesEnum:
enum:
- Code 1
Expand All @@ -1159,6 +1176,7 @@ components:
items:
type: string
type: array
default: null
required:
- arrayOfStrings
AllOfSimpleModel:
Expand All @@ -1169,6 +1187,7 @@ components:
SelfReference:
items: {}
type: array
default: null
SelfReferenceOneOf:
oneOf:
- type: string
Expand Down Expand Up @@ -1213,6 +1232,7 @@ components:
- items:
type: string
type: array
default: null
_fake_webhooks_sources_deleted_post_request_event:
properties:
event_id:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -815,6 +815,7 @@ components:
nullableWithNullDefault:
nullable: true
type: string
default: null
nullableWithPresentDefault:
default: default
nullable: true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -815,6 +815,7 @@ components:
nullableWithNullDefault:
nullable: true
type: string
default: null
nullableWithPresentDefault:
default: default
nullable: true
Expand Down
Loading