forked from loafle/openapi-generator-original
Update dependecies for CVE (#13834)
* Update dependecies for CVE fix #13772 * Fix schemas
This commit is contained in:
parent
4c19c725a7
commit
1b65ef38f5
@ -377,7 +377,7 @@
|
|||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.fasterxml.jackson.core</groupId>
|
<groupId>com.fasterxml.jackson.core</groupId>
|
||||||
<artifactId>jackson-databind</artifactId>
|
<artifactId>jackson-databind</artifactId>
|
||||||
<version>${jackson.version}</version>
|
<version>${jackson-databind.version}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.fasterxml.jackson.datatype</groupId>
|
<groupId>com.fasterxml.jackson.datatype</groupId>
|
||||||
|
@ -16,6 +16,7 @@
|
|||||||
*/
|
*/
|
||||||
package org.openapitools.codegen.java.helidon.functional;
|
package org.openapitools.codegen.java.helidon.functional;
|
||||||
|
|
||||||
|
import org.testng.annotations.BeforeClass;
|
||||||
import org.testng.annotations.Test;
|
import org.testng.annotations.Test;
|
||||||
|
|
||||||
import java.nio.file.Files;
|
import java.nio.file.Files;
|
||||||
@ -26,6 +27,12 @@ import static org.hamcrest.CoreMatchers.not;
|
|||||||
import static org.hamcrest.MatcherAssert.assertThat;
|
import static org.hamcrest.MatcherAssert.assertThat;
|
||||||
|
|
||||||
public class FunctionalHelidonClientBase extends FunctionalBase {
|
public class FunctionalHelidonClientBase extends FunctionalBase {
|
||||||
|
|
||||||
|
@BeforeClass
|
||||||
|
public void setup() {
|
||||||
|
generatorName("java-helidon-client");
|
||||||
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
void buildPetstore() {
|
void buildPetstore() {
|
||||||
generate("src/test/resources/3_0/petstore.yaml");
|
generate("src/test/resources/3_0/petstore.yaml");
|
||||||
|
@ -72,6 +72,9 @@ paths:
|
|||||||
- 'write:pets'
|
- 'write:pets'
|
||||||
- 'read:pets'
|
- 'read:pets'
|
||||||
requestBody:
|
requestBody:
|
||||||
|
content:
|
||||||
|
application/json:
|
||||||
|
schema:
|
||||||
$ref: '#/components/schemas/Pet'
|
$ref: '#/components/schemas/Pet'
|
||||||
/pet/findByStatus:
|
/pet/findByStatus:
|
||||||
get:
|
get:
|
||||||
|
@ -72,6 +72,9 @@ paths:
|
|||||||
- 'write:pets'
|
- 'write:pets'
|
||||||
- 'read:pets'
|
- 'read:pets'
|
||||||
requestBody:
|
requestBody:
|
||||||
|
content:
|
||||||
|
application/json:
|
||||||
|
schema:
|
||||||
$ref: '#/components/schemas/Pet'
|
$ref: '#/components/schemas/Pet'
|
||||||
/pet/findByStatus:
|
/pet/findByStatus:
|
||||||
get:
|
get:
|
||||||
|
@ -36,13 +36,13 @@ paths:
|
|||||||
- name: header1
|
- name: header1
|
||||||
in: header
|
in: header
|
||||||
schema:
|
schema:
|
||||||
$ref: '#/components/requestBodies/Pet'
|
$ref: '#/components/schemas/Pet'
|
||||||
- name: header2
|
- name: header2
|
||||||
in: header
|
in: header
|
||||||
schema:
|
schema:
|
||||||
type: array
|
type: array
|
||||||
items:
|
items:
|
||||||
$ref: '#/components/requestBodies/Pet'
|
$ref: '#/components/schemas/Pet'
|
||||||
- name: Accept
|
- name: Accept
|
||||||
in: header
|
in: header
|
||||||
schema:
|
schema:
|
||||||
|
5
pom.xml
5
pom.xml
@ -1488,7 +1488,7 @@
|
|||||||
<commons-cli.version>1.4</commons-cli.version>
|
<commons-cli.version>1.4</commons-cli.version>
|
||||||
<commons-io.version>2.11.0</commons-io.version>
|
<commons-io.version>2.11.0</commons-io.version>
|
||||||
<commons-lang.version>3.12.0</commons-lang.version>
|
<commons-lang.version>3.12.0</commons-lang.version>
|
||||||
<commons-text.version>1.9</commons-text.version>
|
<commons-text.version>1.10.0</commons-text.version>
|
||||||
<diffutils.version>1.3.0</diffutils.version>
|
<diffutils.version>1.3.0</diffutils.version>
|
||||||
<generex.version>1.0.2</generex.version>
|
<generex.version>1.0.2</generex.version>
|
||||||
<git-commit-id-plugin.version>4.9.10</git-commit-id-plugin.version>
|
<git-commit-id-plugin.version>4.9.10</git-commit-id-plugin.version>
|
||||||
@ -1496,6 +1496,7 @@
|
|||||||
<guava.version>30.1.1-jre</guava.version>
|
<guava.version>30.1.1-jre</guava.version>
|
||||||
<handlebars-java.version>4.2.1</handlebars-java.version>
|
<handlebars-java.version>4.2.1</handlebars-java.version>
|
||||||
<jackson-threetenbp.version>2.10.0</jackson-threetenbp.version>
|
<jackson-threetenbp.version>2.10.0</jackson-threetenbp.version>
|
||||||
|
<jackson-databind.version>2.13.4.2</jackson-databind.version>
|
||||||
<jackson.version>2.13.4</jackson.version>
|
<jackson.version>2.13.4</jackson.version>
|
||||||
<jacoco.version>0.8.7</jacoco.version>
|
<jacoco.version>0.8.7</jacoco.version>
|
||||||
<jmustache.version>1.14</jmustache.version>
|
<jmustache.version>1.14</jmustache.version>
|
||||||
@ -1517,7 +1518,7 @@
|
|||||||
<maven-surefire-plugin.version>3.0.0-M6</maven-surefire-plugin.version>
|
<maven-surefire-plugin.version>3.0.0-M6</maven-surefire-plugin.version>
|
||||||
<openrewrite.version>7.22.0</openrewrite.version>
|
<openrewrite.version>7.22.0</openrewrite.version>
|
||||||
<swagger-parser-groupid.version>io.swagger.parser.v3</swagger-parser-groupid.version>
|
<swagger-parser-groupid.version>io.swagger.parser.v3</swagger-parser-groupid.version>
|
||||||
<swagger-parser.version>2.1.1</swagger-parser.version>
|
<swagger-parser.version>2.1.6</swagger-parser.version>
|
||||||
<testng.version>7.5</testng.version>
|
<testng.version>7.5</testng.version>
|
||||||
<violations-maven-plugin.version>1.34</violations-maven-plugin.version>
|
<violations-maven-plugin.version>1.34</violations-maven-plugin.version>
|
||||||
<wagon-ssh-external.version>3.4.3</wagon-ssh-external.version>
|
<wagon-ssh-external.version>3.4.3</wagon-ssh-external.version>
|
||||||
|
@ -1976,6 +1976,7 @@ components:
|
|||||||
status:
|
status:
|
||||||
description: Updated status of the pet
|
description: Updated status of the pet
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
uploadFile_request:
|
uploadFile_request:
|
||||||
properties:
|
properties:
|
||||||
additionalMetadata:
|
additionalMetadata:
|
||||||
@ -1985,6 +1986,7 @@ components:
|
|||||||
description: file to upload
|
description: file to upload
|
||||||
format: binary
|
format: binary
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
testEnumParameters_request:
|
testEnumParameters_request:
|
||||||
properties:
|
properties:
|
||||||
enum_form_string_array:
|
enum_form_string_array:
|
||||||
@ -2004,6 +2006,7 @@ components:
|
|||||||
- -efg
|
- -efg
|
||||||
- (xyz)
|
- (xyz)
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
testEndpointParameters_request:
|
testEndpointParameters_request:
|
||||||
properties:
|
properties:
|
||||||
integer:
|
integer:
|
||||||
@ -2076,6 +2079,7 @@ components:
|
|||||||
- double
|
- double
|
||||||
- number
|
- number
|
||||||
- pattern_without_delimiter
|
- pattern_without_delimiter
|
||||||
|
type: object
|
||||||
testJsonFormData_request:
|
testJsonFormData_request:
|
||||||
properties:
|
properties:
|
||||||
param:
|
param:
|
||||||
@ -2087,6 +2091,7 @@ components:
|
|||||||
required:
|
required:
|
||||||
- param
|
- param
|
||||||
- param2
|
- param2
|
||||||
|
type: object
|
||||||
uploadFileWithRequiredFile_request:
|
uploadFileWithRequiredFile_request:
|
||||||
properties:
|
properties:
|
||||||
additionalMetadata:
|
additionalMetadata:
|
||||||
@ -2098,6 +2103,7 @@ components:
|
|||||||
type: string
|
type: string
|
||||||
required:
|
required:
|
||||||
- requiredFile
|
- requiredFile
|
||||||
|
type: object
|
||||||
Dog_allOf:
|
Dog_allOf:
|
||||||
properties:
|
properties:
|
||||||
breed:
|
breed:
|
||||||
|
@ -1976,6 +1976,7 @@ components:
|
|||||||
status:
|
status:
|
||||||
description: Updated status of the pet
|
description: Updated status of the pet
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
uploadFile_request:
|
uploadFile_request:
|
||||||
properties:
|
properties:
|
||||||
additionalMetadata:
|
additionalMetadata:
|
||||||
@ -1985,6 +1986,7 @@ components:
|
|||||||
description: file to upload
|
description: file to upload
|
||||||
format: binary
|
format: binary
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
testEnumParameters_request:
|
testEnumParameters_request:
|
||||||
properties:
|
properties:
|
||||||
enum_form_string_array:
|
enum_form_string_array:
|
||||||
@ -2004,6 +2006,7 @@ components:
|
|||||||
- -efg
|
- -efg
|
||||||
- (xyz)
|
- (xyz)
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
testEndpointParameters_request:
|
testEndpointParameters_request:
|
||||||
properties:
|
properties:
|
||||||
integer:
|
integer:
|
||||||
@ -2076,6 +2079,7 @@ components:
|
|||||||
- double
|
- double
|
||||||
- number
|
- number
|
||||||
- pattern_without_delimiter
|
- pattern_without_delimiter
|
||||||
|
type: object
|
||||||
testJsonFormData_request:
|
testJsonFormData_request:
|
||||||
properties:
|
properties:
|
||||||
param:
|
param:
|
||||||
@ -2087,6 +2091,7 @@ components:
|
|||||||
required:
|
required:
|
||||||
- param
|
- param
|
||||||
- param2
|
- param2
|
||||||
|
type: object
|
||||||
uploadFileWithRequiredFile_request:
|
uploadFileWithRequiredFile_request:
|
||||||
properties:
|
properties:
|
||||||
additionalMetadata:
|
additionalMetadata:
|
||||||
@ -2098,6 +2103,7 @@ components:
|
|||||||
type: string
|
type: string
|
||||||
required:
|
required:
|
||||||
- requiredFile
|
- requiredFile
|
||||||
|
type: object
|
||||||
Dog_allOf:
|
Dog_allOf:
|
||||||
properties:
|
properties:
|
||||||
breed:
|
breed:
|
||||||
|
@ -2037,6 +2037,7 @@ components:
|
|||||||
status:
|
status:
|
||||||
description: Updated status of the pet
|
description: Updated status of the pet
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
uploadFile_request:
|
uploadFile_request:
|
||||||
properties:
|
properties:
|
||||||
additionalMetadata:
|
additionalMetadata:
|
||||||
@ -2046,6 +2047,7 @@ components:
|
|||||||
description: file to upload
|
description: file to upload
|
||||||
format: binary
|
format: binary
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
testEnumParameters_request:
|
testEnumParameters_request:
|
||||||
properties:
|
properties:
|
||||||
enum_form_string_array:
|
enum_form_string_array:
|
||||||
@ -2065,6 +2067,7 @@ components:
|
|||||||
- -efg
|
- -efg
|
||||||
- (xyz)
|
- (xyz)
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
testEndpointParameters_request:
|
testEndpointParameters_request:
|
||||||
properties:
|
properties:
|
||||||
integer:
|
integer:
|
||||||
@ -2137,6 +2140,7 @@ components:
|
|||||||
- double
|
- double
|
||||||
- number
|
- number
|
||||||
- pattern_without_delimiter
|
- pattern_without_delimiter
|
||||||
|
type: object
|
||||||
testJsonFormData_request:
|
testJsonFormData_request:
|
||||||
properties:
|
properties:
|
||||||
param:
|
param:
|
||||||
@ -2148,6 +2152,7 @@ components:
|
|||||||
required:
|
required:
|
||||||
- param
|
- param
|
||||||
- param2
|
- param2
|
||||||
|
type: object
|
||||||
uploadFileWithRequiredFile_request:
|
uploadFileWithRequiredFile_request:
|
||||||
properties:
|
properties:
|
||||||
additionalMetadata:
|
additionalMetadata:
|
||||||
@ -2159,6 +2164,7 @@ components:
|
|||||||
type: string
|
type: string
|
||||||
required:
|
required:
|
||||||
- requiredFile
|
- requiredFile
|
||||||
|
type: object
|
||||||
Dog_allOf:
|
Dog_allOf:
|
||||||
properties:
|
properties:
|
||||||
breed:
|
breed:
|
||||||
|
@ -2037,6 +2037,7 @@ components:
|
|||||||
status:
|
status:
|
||||||
description: Updated status of the pet
|
description: Updated status of the pet
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
uploadFile_request:
|
uploadFile_request:
|
||||||
properties:
|
properties:
|
||||||
additionalMetadata:
|
additionalMetadata:
|
||||||
@ -2046,6 +2047,7 @@ components:
|
|||||||
description: file to upload
|
description: file to upload
|
||||||
format: binary
|
format: binary
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
testEnumParameters_request:
|
testEnumParameters_request:
|
||||||
properties:
|
properties:
|
||||||
enum_form_string_array:
|
enum_form_string_array:
|
||||||
@ -2065,6 +2067,7 @@ components:
|
|||||||
- -efg
|
- -efg
|
||||||
- (xyz)
|
- (xyz)
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
testEndpointParameters_request:
|
testEndpointParameters_request:
|
||||||
properties:
|
properties:
|
||||||
integer:
|
integer:
|
||||||
@ -2137,6 +2140,7 @@ components:
|
|||||||
- double
|
- double
|
||||||
- number
|
- number
|
||||||
- pattern_without_delimiter
|
- pattern_without_delimiter
|
||||||
|
type: object
|
||||||
testJsonFormData_request:
|
testJsonFormData_request:
|
||||||
properties:
|
properties:
|
||||||
param:
|
param:
|
||||||
@ -2148,6 +2152,7 @@ components:
|
|||||||
required:
|
required:
|
||||||
- param
|
- param
|
||||||
- param2
|
- param2
|
||||||
|
type: object
|
||||||
uploadFileWithRequiredFile_request:
|
uploadFileWithRequiredFile_request:
|
||||||
properties:
|
properties:
|
||||||
additionalMetadata:
|
additionalMetadata:
|
||||||
@ -2159,6 +2164,7 @@ components:
|
|||||||
type: string
|
type: string
|
||||||
required:
|
required:
|
||||||
- requiredFile
|
- requiredFile
|
||||||
|
type: object
|
||||||
Dog_allOf:
|
Dog_allOf:
|
||||||
properties:
|
properties:
|
||||||
breed:
|
breed:
|
||||||
|
@ -2037,6 +2037,7 @@ components:
|
|||||||
status:
|
status:
|
||||||
description: Updated status of the pet
|
description: Updated status of the pet
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
uploadFile_request:
|
uploadFile_request:
|
||||||
properties:
|
properties:
|
||||||
additionalMetadata:
|
additionalMetadata:
|
||||||
@ -2046,6 +2047,7 @@ components:
|
|||||||
description: file to upload
|
description: file to upload
|
||||||
format: binary
|
format: binary
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
testEnumParameters_request:
|
testEnumParameters_request:
|
||||||
properties:
|
properties:
|
||||||
enum_form_string_array:
|
enum_form_string_array:
|
||||||
@ -2065,6 +2067,7 @@ components:
|
|||||||
- -efg
|
- -efg
|
||||||
- (xyz)
|
- (xyz)
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
testEndpointParameters_request:
|
testEndpointParameters_request:
|
||||||
properties:
|
properties:
|
||||||
integer:
|
integer:
|
||||||
@ -2137,6 +2140,7 @@ components:
|
|||||||
- double
|
- double
|
||||||
- number
|
- number
|
||||||
- pattern_without_delimiter
|
- pattern_without_delimiter
|
||||||
|
type: object
|
||||||
testJsonFormData_request:
|
testJsonFormData_request:
|
||||||
properties:
|
properties:
|
||||||
param:
|
param:
|
||||||
@ -2148,6 +2152,7 @@ components:
|
|||||||
required:
|
required:
|
||||||
- param
|
- param
|
||||||
- param2
|
- param2
|
||||||
|
type: object
|
||||||
uploadFileWithRequiredFile_request:
|
uploadFileWithRequiredFile_request:
|
||||||
properties:
|
properties:
|
||||||
additionalMetadata:
|
additionalMetadata:
|
||||||
@ -2159,6 +2164,7 @@ components:
|
|||||||
type: string
|
type: string
|
||||||
required:
|
required:
|
||||||
- requiredFile
|
- requiredFile
|
||||||
|
type: object
|
||||||
Dog_allOf:
|
Dog_allOf:
|
||||||
properties:
|
properties:
|
||||||
breed:
|
breed:
|
||||||
|
@ -2037,6 +2037,7 @@ components:
|
|||||||
status:
|
status:
|
||||||
description: Updated status of the pet
|
description: Updated status of the pet
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
uploadFile_request:
|
uploadFile_request:
|
||||||
properties:
|
properties:
|
||||||
additionalMetadata:
|
additionalMetadata:
|
||||||
@ -2046,6 +2047,7 @@ components:
|
|||||||
description: file to upload
|
description: file to upload
|
||||||
format: binary
|
format: binary
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
testEnumParameters_request:
|
testEnumParameters_request:
|
||||||
properties:
|
properties:
|
||||||
enum_form_string_array:
|
enum_form_string_array:
|
||||||
@ -2065,6 +2067,7 @@ components:
|
|||||||
- -efg
|
- -efg
|
||||||
- (xyz)
|
- (xyz)
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
testEndpointParameters_request:
|
testEndpointParameters_request:
|
||||||
properties:
|
properties:
|
||||||
integer:
|
integer:
|
||||||
@ -2137,6 +2140,7 @@ components:
|
|||||||
- double
|
- double
|
||||||
- number
|
- number
|
||||||
- pattern_without_delimiter
|
- pattern_without_delimiter
|
||||||
|
type: object
|
||||||
testJsonFormData_request:
|
testJsonFormData_request:
|
||||||
properties:
|
properties:
|
||||||
param:
|
param:
|
||||||
@ -2148,6 +2152,7 @@ components:
|
|||||||
required:
|
required:
|
||||||
- param
|
- param
|
||||||
- param2
|
- param2
|
||||||
|
type: object
|
||||||
uploadFileWithRequiredFile_request:
|
uploadFileWithRequiredFile_request:
|
||||||
properties:
|
properties:
|
||||||
additionalMetadata:
|
additionalMetadata:
|
||||||
@ -2159,6 +2164,7 @@ components:
|
|||||||
type: string
|
type: string
|
||||||
required:
|
required:
|
||||||
- requiredFile
|
- requiredFile
|
||||||
|
type: object
|
||||||
Dog_allOf:
|
Dog_allOf:
|
||||||
properties:
|
properties:
|
||||||
breed:
|
breed:
|
||||||
|
@ -2037,6 +2037,7 @@ components:
|
|||||||
status:
|
status:
|
||||||
description: Updated status of the pet
|
description: Updated status of the pet
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
uploadFile_request:
|
uploadFile_request:
|
||||||
properties:
|
properties:
|
||||||
additionalMetadata:
|
additionalMetadata:
|
||||||
@ -2046,6 +2047,7 @@ components:
|
|||||||
description: file to upload
|
description: file to upload
|
||||||
format: binary
|
format: binary
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
testEnumParameters_request:
|
testEnumParameters_request:
|
||||||
properties:
|
properties:
|
||||||
enum_form_string_array:
|
enum_form_string_array:
|
||||||
@ -2065,6 +2067,7 @@ components:
|
|||||||
- -efg
|
- -efg
|
||||||
- (xyz)
|
- (xyz)
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
testEndpointParameters_request:
|
testEndpointParameters_request:
|
||||||
properties:
|
properties:
|
||||||
integer:
|
integer:
|
||||||
@ -2137,6 +2140,7 @@ components:
|
|||||||
- double
|
- double
|
||||||
- number
|
- number
|
||||||
- pattern_without_delimiter
|
- pattern_without_delimiter
|
||||||
|
type: object
|
||||||
testJsonFormData_request:
|
testJsonFormData_request:
|
||||||
properties:
|
properties:
|
||||||
param:
|
param:
|
||||||
@ -2148,6 +2152,7 @@ components:
|
|||||||
required:
|
required:
|
||||||
- param
|
- param
|
||||||
- param2
|
- param2
|
||||||
|
type: object
|
||||||
uploadFileWithRequiredFile_request:
|
uploadFileWithRequiredFile_request:
|
||||||
properties:
|
properties:
|
||||||
additionalMetadata:
|
additionalMetadata:
|
||||||
@ -2159,6 +2164,7 @@ components:
|
|||||||
type: string
|
type: string
|
||||||
required:
|
required:
|
||||||
- requiredFile
|
- requiredFile
|
||||||
|
type: object
|
||||||
Dog_allOf:
|
Dog_allOf:
|
||||||
properties:
|
properties:
|
||||||
breed:
|
breed:
|
||||||
|
@ -2037,6 +2037,7 @@ components:
|
|||||||
status:
|
status:
|
||||||
description: Updated status of the pet
|
description: Updated status of the pet
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
uploadFile_request:
|
uploadFile_request:
|
||||||
properties:
|
properties:
|
||||||
additionalMetadata:
|
additionalMetadata:
|
||||||
@ -2046,6 +2047,7 @@ components:
|
|||||||
description: file to upload
|
description: file to upload
|
||||||
format: binary
|
format: binary
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
testEnumParameters_request:
|
testEnumParameters_request:
|
||||||
properties:
|
properties:
|
||||||
enum_form_string_array:
|
enum_form_string_array:
|
||||||
@ -2065,6 +2067,7 @@ components:
|
|||||||
- -efg
|
- -efg
|
||||||
- (xyz)
|
- (xyz)
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
testEndpointParameters_request:
|
testEndpointParameters_request:
|
||||||
properties:
|
properties:
|
||||||
integer:
|
integer:
|
||||||
@ -2137,6 +2140,7 @@ components:
|
|||||||
- double
|
- double
|
||||||
- number
|
- number
|
||||||
- pattern_without_delimiter
|
- pattern_without_delimiter
|
||||||
|
type: object
|
||||||
testJsonFormData_request:
|
testJsonFormData_request:
|
||||||
properties:
|
properties:
|
||||||
param:
|
param:
|
||||||
@ -2148,6 +2152,7 @@ components:
|
|||||||
required:
|
required:
|
||||||
- param
|
- param
|
||||||
- param2
|
- param2
|
||||||
|
type: object
|
||||||
uploadFileWithRequiredFile_request:
|
uploadFileWithRequiredFile_request:
|
||||||
properties:
|
properties:
|
||||||
additionalMetadata:
|
additionalMetadata:
|
||||||
@ -2159,6 +2164,7 @@ components:
|
|||||||
type: string
|
type: string
|
||||||
required:
|
required:
|
||||||
- requiredFile
|
- requiredFile
|
||||||
|
type: object
|
||||||
Dog_allOf:
|
Dog_allOf:
|
||||||
properties:
|
properties:
|
||||||
breed:
|
breed:
|
||||||
|
@ -2037,6 +2037,7 @@ components:
|
|||||||
status:
|
status:
|
||||||
description: Updated status of the pet
|
description: Updated status of the pet
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
uploadFile_request:
|
uploadFile_request:
|
||||||
properties:
|
properties:
|
||||||
additionalMetadata:
|
additionalMetadata:
|
||||||
@ -2046,6 +2047,7 @@ components:
|
|||||||
description: file to upload
|
description: file to upload
|
||||||
format: binary
|
format: binary
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
testEnumParameters_request:
|
testEnumParameters_request:
|
||||||
properties:
|
properties:
|
||||||
enum_form_string_array:
|
enum_form_string_array:
|
||||||
@ -2065,6 +2067,7 @@ components:
|
|||||||
- -efg
|
- -efg
|
||||||
- (xyz)
|
- (xyz)
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
testEndpointParameters_request:
|
testEndpointParameters_request:
|
||||||
properties:
|
properties:
|
||||||
integer:
|
integer:
|
||||||
@ -2137,6 +2140,7 @@ components:
|
|||||||
- double
|
- double
|
||||||
- number
|
- number
|
||||||
- pattern_without_delimiter
|
- pattern_without_delimiter
|
||||||
|
type: object
|
||||||
testJsonFormData_request:
|
testJsonFormData_request:
|
||||||
properties:
|
properties:
|
||||||
param:
|
param:
|
||||||
@ -2148,6 +2152,7 @@ components:
|
|||||||
required:
|
required:
|
||||||
- param
|
- param
|
||||||
- param2
|
- param2
|
||||||
|
type: object
|
||||||
uploadFileWithRequiredFile_request:
|
uploadFileWithRequiredFile_request:
|
||||||
properties:
|
properties:
|
||||||
additionalMetadata:
|
additionalMetadata:
|
||||||
@ -2159,6 +2164,7 @@ components:
|
|||||||
type: string
|
type: string
|
||||||
required:
|
required:
|
||||||
- requiredFile
|
- requiredFile
|
||||||
|
type: object
|
||||||
Dog_allOf:
|
Dog_allOf:
|
||||||
properties:
|
properties:
|
||||||
breed:
|
breed:
|
||||||
|
@ -2037,6 +2037,7 @@ components:
|
|||||||
status:
|
status:
|
||||||
description: Updated status of the pet
|
description: Updated status of the pet
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
uploadFile_request:
|
uploadFile_request:
|
||||||
properties:
|
properties:
|
||||||
additionalMetadata:
|
additionalMetadata:
|
||||||
@ -2046,6 +2047,7 @@ components:
|
|||||||
description: file to upload
|
description: file to upload
|
||||||
format: binary
|
format: binary
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
testEnumParameters_request:
|
testEnumParameters_request:
|
||||||
properties:
|
properties:
|
||||||
enum_form_string_array:
|
enum_form_string_array:
|
||||||
@ -2065,6 +2067,7 @@ components:
|
|||||||
- -efg
|
- -efg
|
||||||
- (xyz)
|
- (xyz)
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
testEndpointParameters_request:
|
testEndpointParameters_request:
|
||||||
properties:
|
properties:
|
||||||
integer:
|
integer:
|
||||||
@ -2137,6 +2140,7 @@ components:
|
|||||||
- double
|
- double
|
||||||
- number
|
- number
|
||||||
- pattern_without_delimiter
|
- pattern_without_delimiter
|
||||||
|
type: object
|
||||||
testJsonFormData_request:
|
testJsonFormData_request:
|
||||||
properties:
|
properties:
|
||||||
param:
|
param:
|
||||||
@ -2148,6 +2152,7 @@ components:
|
|||||||
required:
|
required:
|
||||||
- param
|
- param
|
||||||
- param2
|
- param2
|
||||||
|
type: object
|
||||||
uploadFileWithRequiredFile_request:
|
uploadFileWithRequiredFile_request:
|
||||||
properties:
|
properties:
|
||||||
additionalMetadata:
|
additionalMetadata:
|
||||||
@ -2159,6 +2164,7 @@ components:
|
|||||||
type: string
|
type: string
|
||||||
required:
|
required:
|
||||||
- requiredFile
|
- requiredFile
|
||||||
|
type: object
|
||||||
Dog_allOf:
|
Dog_allOf:
|
||||||
properties:
|
properties:
|
||||||
breed:
|
breed:
|
||||||
|
@ -2037,6 +2037,7 @@ components:
|
|||||||
status:
|
status:
|
||||||
description: Updated status of the pet
|
description: Updated status of the pet
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
uploadFile_request:
|
uploadFile_request:
|
||||||
properties:
|
properties:
|
||||||
additionalMetadata:
|
additionalMetadata:
|
||||||
@ -2046,6 +2047,7 @@ components:
|
|||||||
description: file to upload
|
description: file to upload
|
||||||
format: binary
|
format: binary
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
testEnumParameters_request:
|
testEnumParameters_request:
|
||||||
properties:
|
properties:
|
||||||
enum_form_string_array:
|
enum_form_string_array:
|
||||||
@ -2065,6 +2067,7 @@ components:
|
|||||||
- -efg
|
- -efg
|
||||||
- (xyz)
|
- (xyz)
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
testEndpointParameters_request:
|
testEndpointParameters_request:
|
||||||
properties:
|
properties:
|
||||||
integer:
|
integer:
|
||||||
@ -2137,6 +2140,7 @@ components:
|
|||||||
- double
|
- double
|
||||||
- number
|
- number
|
||||||
- pattern_without_delimiter
|
- pattern_without_delimiter
|
||||||
|
type: object
|
||||||
testJsonFormData_request:
|
testJsonFormData_request:
|
||||||
properties:
|
properties:
|
||||||
param:
|
param:
|
||||||
@ -2148,6 +2152,7 @@ components:
|
|||||||
required:
|
required:
|
||||||
- param
|
- param
|
||||||
- param2
|
- param2
|
||||||
|
type: object
|
||||||
uploadFileWithRequiredFile_request:
|
uploadFileWithRequiredFile_request:
|
||||||
properties:
|
properties:
|
||||||
additionalMetadata:
|
additionalMetadata:
|
||||||
@ -2159,6 +2164,7 @@ components:
|
|||||||
type: string
|
type: string
|
||||||
required:
|
required:
|
||||||
- requiredFile
|
- requiredFile
|
||||||
|
type: object
|
||||||
Dog_allOf:
|
Dog_allOf:
|
||||||
properties:
|
properties:
|
||||||
breed:
|
breed:
|
||||||
|
@ -2037,6 +2037,7 @@ components:
|
|||||||
status:
|
status:
|
||||||
description: Updated status of the pet
|
description: Updated status of the pet
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
uploadFile_request:
|
uploadFile_request:
|
||||||
properties:
|
properties:
|
||||||
additionalMetadata:
|
additionalMetadata:
|
||||||
@ -2046,6 +2047,7 @@ components:
|
|||||||
description: file to upload
|
description: file to upload
|
||||||
format: binary
|
format: binary
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
testEnumParameters_request:
|
testEnumParameters_request:
|
||||||
properties:
|
properties:
|
||||||
enum_form_string_array:
|
enum_form_string_array:
|
||||||
@ -2065,6 +2067,7 @@ components:
|
|||||||
- -efg
|
- -efg
|
||||||
- (xyz)
|
- (xyz)
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
testEndpointParameters_request:
|
testEndpointParameters_request:
|
||||||
properties:
|
properties:
|
||||||
integer:
|
integer:
|
||||||
@ -2137,6 +2140,7 @@ components:
|
|||||||
- double
|
- double
|
||||||
- number
|
- number
|
||||||
- pattern_without_delimiter
|
- pattern_without_delimiter
|
||||||
|
type: object
|
||||||
testJsonFormData_request:
|
testJsonFormData_request:
|
||||||
properties:
|
properties:
|
||||||
param:
|
param:
|
||||||
@ -2148,6 +2152,7 @@ components:
|
|||||||
required:
|
required:
|
||||||
- param
|
- param
|
||||||
- param2
|
- param2
|
||||||
|
type: object
|
||||||
uploadFileWithRequiredFile_request:
|
uploadFileWithRequiredFile_request:
|
||||||
properties:
|
properties:
|
||||||
additionalMetadata:
|
additionalMetadata:
|
||||||
@ -2159,6 +2164,7 @@ components:
|
|||||||
type: string
|
type: string
|
||||||
required:
|
required:
|
||||||
- requiredFile
|
- requiredFile
|
||||||
|
type: object
|
||||||
Dog_allOf:
|
Dog_allOf:
|
||||||
properties:
|
properties:
|
||||||
breed:
|
breed:
|
||||||
|
@ -2037,6 +2037,7 @@ components:
|
|||||||
status:
|
status:
|
||||||
description: Updated status of the pet
|
description: Updated status of the pet
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
uploadFile_request:
|
uploadFile_request:
|
||||||
properties:
|
properties:
|
||||||
additionalMetadata:
|
additionalMetadata:
|
||||||
@ -2046,6 +2047,7 @@ components:
|
|||||||
description: file to upload
|
description: file to upload
|
||||||
format: binary
|
format: binary
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
testEnumParameters_request:
|
testEnumParameters_request:
|
||||||
properties:
|
properties:
|
||||||
enum_form_string_array:
|
enum_form_string_array:
|
||||||
@ -2065,6 +2067,7 @@ components:
|
|||||||
- -efg
|
- -efg
|
||||||
- (xyz)
|
- (xyz)
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
testEndpointParameters_request:
|
testEndpointParameters_request:
|
||||||
properties:
|
properties:
|
||||||
integer:
|
integer:
|
||||||
@ -2137,6 +2140,7 @@ components:
|
|||||||
- double
|
- double
|
||||||
- number
|
- number
|
||||||
- pattern_without_delimiter
|
- pattern_without_delimiter
|
||||||
|
type: object
|
||||||
testJsonFormData_request:
|
testJsonFormData_request:
|
||||||
properties:
|
properties:
|
||||||
param:
|
param:
|
||||||
@ -2148,6 +2152,7 @@ components:
|
|||||||
required:
|
required:
|
||||||
- param
|
- param
|
||||||
- param2
|
- param2
|
||||||
|
type: object
|
||||||
uploadFileWithRequiredFile_request:
|
uploadFileWithRequiredFile_request:
|
||||||
properties:
|
properties:
|
||||||
additionalMetadata:
|
additionalMetadata:
|
||||||
@ -2159,6 +2164,7 @@ components:
|
|||||||
type: string
|
type: string
|
||||||
required:
|
required:
|
||||||
- requiredFile
|
- requiredFile
|
||||||
|
type: object
|
||||||
Dog_allOf:
|
Dog_allOf:
|
||||||
properties:
|
properties:
|
||||||
breed:
|
breed:
|
||||||
|
@ -2037,6 +2037,7 @@ components:
|
|||||||
status:
|
status:
|
||||||
description: Updated status of the pet
|
description: Updated status of the pet
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
uploadFile_request:
|
uploadFile_request:
|
||||||
properties:
|
properties:
|
||||||
additionalMetadata:
|
additionalMetadata:
|
||||||
@ -2046,6 +2047,7 @@ components:
|
|||||||
description: file to upload
|
description: file to upload
|
||||||
format: binary
|
format: binary
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
testEnumParameters_request:
|
testEnumParameters_request:
|
||||||
properties:
|
properties:
|
||||||
enum_form_string_array:
|
enum_form_string_array:
|
||||||
@ -2065,6 +2067,7 @@ components:
|
|||||||
- -efg
|
- -efg
|
||||||
- (xyz)
|
- (xyz)
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
testEndpointParameters_request:
|
testEndpointParameters_request:
|
||||||
properties:
|
properties:
|
||||||
integer:
|
integer:
|
||||||
@ -2137,6 +2140,7 @@ components:
|
|||||||
- double
|
- double
|
||||||
- number
|
- number
|
||||||
- pattern_without_delimiter
|
- pattern_without_delimiter
|
||||||
|
type: object
|
||||||
testJsonFormData_request:
|
testJsonFormData_request:
|
||||||
properties:
|
properties:
|
||||||
param:
|
param:
|
||||||
@ -2148,6 +2152,7 @@ components:
|
|||||||
required:
|
required:
|
||||||
- param
|
- param
|
||||||
- param2
|
- param2
|
||||||
|
type: object
|
||||||
uploadFileWithRequiredFile_request:
|
uploadFileWithRequiredFile_request:
|
||||||
properties:
|
properties:
|
||||||
additionalMetadata:
|
additionalMetadata:
|
||||||
@ -2159,6 +2164,7 @@ components:
|
|||||||
type: string
|
type: string
|
||||||
required:
|
required:
|
||||||
- requiredFile
|
- requiredFile
|
||||||
|
type: object
|
||||||
Dog_allOf:
|
Dog_allOf:
|
||||||
properties:
|
properties:
|
||||||
breed:
|
breed:
|
||||||
|
@ -2037,6 +2037,7 @@ components:
|
|||||||
status:
|
status:
|
||||||
description: Updated status of the pet
|
description: Updated status of the pet
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
uploadFile_request:
|
uploadFile_request:
|
||||||
properties:
|
properties:
|
||||||
additionalMetadata:
|
additionalMetadata:
|
||||||
@ -2046,6 +2047,7 @@ components:
|
|||||||
description: file to upload
|
description: file to upload
|
||||||
format: binary
|
format: binary
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
testEnumParameters_request:
|
testEnumParameters_request:
|
||||||
properties:
|
properties:
|
||||||
enum_form_string_array:
|
enum_form_string_array:
|
||||||
@ -2065,6 +2067,7 @@ components:
|
|||||||
- -efg
|
- -efg
|
||||||
- (xyz)
|
- (xyz)
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
testEndpointParameters_request:
|
testEndpointParameters_request:
|
||||||
properties:
|
properties:
|
||||||
integer:
|
integer:
|
||||||
@ -2137,6 +2140,7 @@ components:
|
|||||||
- double
|
- double
|
||||||
- number
|
- number
|
||||||
- pattern_without_delimiter
|
- pattern_without_delimiter
|
||||||
|
type: object
|
||||||
testJsonFormData_request:
|
testJsonFormData_request:
|
||||||
properties:
|
properties:
|
||||||
param:
|
param:
|
||||||
@ -2148,6 +2152,7 @@ components:
|
|||||||
required:
|
required:
|
||||||
- param
|
- param
|
||||||
- param2
|
- param2
|
||||||
|
type: object
|
||||||
uploadFileWithRequiredFile_request:
|
uploadFileWithRequiredFile_request:
|
||||||
properties:
|
properties:
|
||||||
additionalMetadata:
|
additionalMetadata:
|
||||||
@ -2159,6 +2164,7 @@ components:
|
|||||||
type: string
|
type: string
|
||||||
required:
|
required:
|
||||||
- requiredFile
|
- requiredFile
|
||||||
|
type: object
|
||||||
Dog_allOf:
|
Dog_allOf:
|
||||||
properties:
|
properties:
|
||||||
breed:
|
breed:
|
||||||
|
@ -2037,6 +2037,7 @@ components:
|
|||||||
status:
|
status:
|
||||||
description: Updated status of the pet
|
description: Updated status of the pet
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
uploadFile_request:
|
uploadFile_request:
|
||||||
properties:
|
properties:
|
||||||
additionalMetadata:
|
additionalMetadata:
|
||||||
@ -2046,6 +2047,7 @@ components:
|
|||||||
description: file to upload
|
description: file to upload
|
||||||
format: binary
|
format: binary
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
testEnumParameters_request:
|
testEnumParameters_request:
|
||||||
properties:
|
properties:
|
||||||
enum_form_string_array:
|
enum_form_string_array:
|
||||||
@ -2065,6 +2067,7 @@ components:
|
|||||||
- -efg
|
- -efg
|
||||||
- (xyz)
|
- (xyz)
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
testEndpointParameters_request:
|
testEndpointParameters_request:
|
||||||
properties:
|
properties:
|
||||||
integer:
|
integer:
|
||||||
@ -2137,6 +2140,7 @@ components:
|
|||||||
- double
|
- double
|
||||||
- number
|
- number
|
||||||
- pattern_without_delimiter
|
- pattern_without_delimiter
|
||||||
|
type: object
|
||||||
testJsonFormData_request:
|
testJsonFormData_request:
|
||||||
properties:
|
properties:
|
||||||
param:
|
param:
|
||||||
@ -2148,6 +2152,7 @@ components:
|
|||||||
required:
|
required:
|
||||||
- param
|
- param
|
||||||
- param2
|
- param2
|
||||||
|
type: object
|
||||||
uploadFileWithRequiredFile_request:
|
uploadFileWithRequiredFile_request:
|
||||||
properties:
|
properties:
|
||||||
additionalMetadata:
|
additionalMetadata:
|
||||||
@ -2159,6 +2164,7 @@ components:
|
|||||||
type: string
|
type: string
|
||||||
required:
|
required:
|
||||||
- requiredFile
|
- requiredFile
|
||||||
|
type: object
|
||||||
Dog_allOf:
|
Dog_allOf:
|
||||||
properties:
|
properties:
|
||||||
breed:
|
breed:
|
||||||
|
@ -2037,6 +2037,7 @@ components:
|
|||||||
status:
|
status:
|
||||||
description: Updated status of the pet
|
description: Updated status of the pet
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
uploadFile_request:
|
uploadFile_request:
|
||||||
properties:
|
properties:
|
||||||
additionalMetadata:
|
additionalMetadata:
|
||||||
@ -2046,6 +2047,7 @@ components:
|
|||||||
description: file to upload
|
description: file to upload
|
||||||
format: binary
|
format: binary
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
testEnumParameters_request:
|
testEnumParameters_request:
|
||||||
properties:
|
properties:
|
||||||
enum_form_string_array:
|
enum_form_string_array:
|
||||||
@ -2065,6 +2067,7 @@ components:
|
|||||||
- -efg
|
- -efg
|
||||||
- (xyz)
|
- (xyz)
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
testEndpointParameters_request:
|
testEndpointParameters_request:
|
||||||
properties:
|
properties:
|
||||||
integer:
|
integer:
|
||||||
@ -2137,6 +2140,7 @@ components:
|
|||||||
- double
|
- double
|
||||||
- number
|
- number
|
||||||
- pattern_without_delimiter
|
- pattern_without_delimiter
|
||||||
|
type: object
|
||||||
testJsonFormData_request:
|
testJsonFormData_request:
|
||||||
properties:
|
properties:
|
||||||
param:
|
param:
|
||||||
@ -2148,6 +2152,7 @@ components:
|
|||||||
required:
|
required:
|
||||||
- param
|
- param
|
||||||
- param2
|
- param2
|
||||||
|
type: object
|
||||||
uploadFileWithRequiredFile_request:
|
uploadFileWithRequiredFile_request:
|
||||||
properties:
|
properties:
|
||||||
additionalMetadata:
|
additionalMetadata:
|
||||||
@ -2159,6 +2164,7 @@ components:
|
|||||||
type: string
|
type: string
|
||||||
required:
|
required:
|
||||||
- requiredFile
|
- requiredFile
|
||||||
|
type: object
|
||||||
Dog_allOf:
|
Dog_allOf:
|
||||||
properties:
|
properties:
|
||||||
breed:
|
breed:
|
||||||
|
@ -2037,6 +2037,7 @@ components:
|
|||||||
status:
|
status:
|
||||||
description: Updated status of the pet
|
description: Updated status of the pet
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
uploadFile_request:
|
uploadFile_request:
|
||||||
properties:
|
properties:
|
||||||
additionalMetadata:
|
additionalMetadata:
|
||||||
@ -2046,6 +2047,7 @@ components:
|
|||||||
description: file to upload
|
description: file to upload
|
||||||
format: binary
|
format: binary
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
testEnumParameters_request:
|
testEnumParameters_request:
|
||||||
properties:
|
properties:
|
||||||
enum_form_string_array:
|
enum_form_string_array:
|
||||||
@ -2065,6 +2067,7 @@ components:
|
|||||||
- -efg
|
- -efg
|
||||||
- (xyz)
|
- (xyz)
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
testEndpointParameters_request:
|
testEndpointParameters_request:
|
||||||
properties:
|
properties:
|
||||||
integer:
|
integer:
|
||||||
@ -2137,6 +2140,7 @@ components:
|
|||||||
- double
|
- double
|
||||||
- number
|
- number
|
||||||
- pattern_without_delimiter
|
- pattern_without_delimiter
|
||||||
|
type: object
|
||||||
testJsonFormData_request:
|
testJsonFormData_request:
|
||||||
properties:
|
properties:
|
||||||
param:
|
param:
|
||||||
@ -2148,6 +2152,7 @@ components:
|
|||||||
required:
|
required:
|
||||||
- param
|
- param
|
||||||
- param2
|
- param2
|
||||||
|
type: object
|
||||||
uploadFileWithRequiredFile_request:
|
uploadFileWithRequiredFile_request:
|
||||||
properties:
|
properties:
|
||||||
additionalMetadata:
|
additionalMetadata:
|
||||||
@ -2159,6 +2164,7 @@ components:
|
|||||||
type: string
|
type: string
|
||||||
required:
|
required:
|
||||||
- requiredFile
|
- requiredFile
|
||||||
|
type: object
|
||||||
Dog_allOf:
|
Dog_allOf:
|
||||||
properties:
|
properties:
|
||||||
breed:
|
breed:
|
||||||
|
@ -2037,6 +2037,7 @@ components:
|
|||||||
status:
|
status:
|
||||||
description: Updated status of the pet
|
description: Updated status of the pet
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
uploadFile_request:
|
uploadFile_request:
|
||||||
properties:
|
properties:
|
||||||
additionalMetadata:
|
additionalMetadata:
|
||||||
@ -2046,6 +2047,7 @@ components:
|
|||||||
description: file to upload
|
description: file to upload
|
||||||
format: binary
|
format: binary
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
testEnumParameters_request:
|
testEnumParameters_request:
|
||||||
properties:
|
properties:
|
||||||
enum_form_string_array:
|
enum_form_string_array:
|
||||||
@ -2065,6 +2067,7 @@ components:
|
|||||||
- -efg
|
- -efg
|
||||||
- (xyz)
|
- (xyz)
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
testEndpointParameters_request:
|
testEndpointParameters_request:
|
||||||
properties:
|
properties:
|
||||||
integer:
|
integer:
|
||||||
@ -2137,6 +2140,7 @@ components:
|
|||||||
- double
|
- double
|
||||||
- number
|
- number
|
||||||
- pattern_without_delimiter
|
- pattern_without_delimiter
|
||||||
|
type: object
|
||||||
testJsonFormData_request:
|
testJsonFormData_request:
|
||||||
properties:
|
properties:
|
||||||
param:
|
param:
|
||||||
@ -2148,6 +2152,7 @@ components:
|
|||||||
required:
|
required:
|
||||||
- param
|
- param
|
||||||
- param2
|
- param2
|
||||||
|
type: object
|
||||||
uploadFileWithRequiredFile_request:
|
uploadFileWithRequiredFile_request:
|
||||||
properties:
|
properties:
|
||||||
additionalMetadata:
|
additionalMetadata:
|
||||||
@ -2159,6 +2164,7 @@ components:
|
|||||||
type: string
|
type: string
|
||||||
required:
|
required:
|
||||||
- requiredFile
|
- requiredFile
|
||||||
|
type: object
|
||||||
Dog_allOf:
|
Dog_allOf:
|
||||||
properties:
|
properties:
|
||||||
breed:
|
breed:
|
||||||
|
@ -2037,6 +2037,7 @@ components:
|
|||||||
status:
|
status:
|
||||||
description: Updated status of the pet
|
description: Updated status of the pet
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
uploadFile_request:
|
uploadFile_request:
|
||||||
properties:
|
properties:
|
||||||
additionalMetadata:
|
additionalMetadata:
|
||||||
@ -2046,6 +2047,7 @@ components:
|
|||||||
description: file to upload
|
description: file to upload
|
||||||
format: binary
|
format: binary
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
testEnumParameters_request:
|
testEnumParameters_request:
|
||||||
properties:
|
properties:
|
||||||
enum_form_string_array:
|
enum_form_string_array:
|
||||||
@ -2065,6 +2067,7 @@ components:
|
|||||||
- -efg
|
- -efg
|
||||||
- (xyz)
|
- (xyz)
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
testEndpointParameters_request:
|
testEndpointParameters_request:
|
||||||
properties:
|
properties:
|
||||||
integer:
|
integer:
|
||||||
@ -2137,6 +2140,7 @@ components:
|
|||||||
- double
|
- double
|
||||||
- number
|
- number
|
||||||
- pattern_without_delimiter
|
- pattern_without_delimiter
|
||||||
|
type: object
|
||||||
testJsonFormData_request:
|
testJsonFormData_request:
|
||||||
properties:
|
properties:
|
||||||
param:
|
param:
|
||||||
@ -2148,6 +2152,7 @@ components:
|
|||||||
required:
|
required:
|
||||||
- param
|
- param
|
||||||
- param2
|
- param2
|
||||||
|
type: object
|
||||||
uploadFileWithRequiredFile_request:
|
uploadFileWithRequiredFile_request:
|
||||||
properties:
|
properties:
|
||||||
additionalMetadata:
|
additionalMetadata:
|
||||||
@ -2159,6 +2164,7 @@ components:
|
|||||||
type: string
|
type: string
|
||||||
required:
|
required:
|
||||||
- requiredFile
|
- requiredFile
|
||||||
|
type: object
|
||||||
Dog_allOf:
|
Dog_allOf:
|
||||||
properties:
|
properties:
|
||||||
breed:
|
breed:
|
||||||
|
@ -2037,6 +2037,7 @@ components:
|
|||||||
status:
|
status:
|
||||||
description: Updated status of the pet
|
description: Updated status of the pet
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
uploadFile_request:
|
uploadFile_request:
|
||||||
properties:
|
properties:
|
||||||
additionalMetadata:
|
additionalMetadata:
|
||||||
@ -2046,6 +2047,7 @@ components:
|
|||||||
description: file to upload
|
description: file to upload
|
||||||
format: binary
|
format: binary
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
testEnumParameters_request:
|
testEnumParameters_request:
|
||||||
properties:
|
properties:
|
||||||
enum_form_string_array:
|
enum_form_string_array:
|
||||||
@ -2065,6 +2067,7 @@ components:
|
|||||||
- -efg
|
- -efg
|
||||||
- (xyz)
|
- (xyz)
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
testEndpointParameters_request:
|
testEndpointParameters_request:
|
||||||
properties:
|
properties:
|
||||||
integer:
|
integer:
|
||||||
@ -2137,6 +2140,7 @@ components:
|
|||||||
- double
|
- double
|
||||||
- number
|
- number
|
||||||
- pattern_without_delimiter
|
- pattern_without_delimiter
|
||||||
|
type: object
|
||||||
testJsonFormData_request:
|
testJsonFormData_request:
|
||||||
properties:
|
properties:
|
||||||
param:
|
param:
|
||||||
@ -2148,6 +2152,7 @@ components:
|
|||||||
required:
|
required:
|
||||||
- param
|
- param
|
||||||
- param2
|
- param2
|
||||||
|
type: object
|
||||||
uploadFileWithRequiredFile_request:
|
uploadFileWithRequiredFile_request:
|
||||||
properties:
|
properties:
|
||||||
additionalMetadata:
|
additionalMetadata:
|
||||||
@ -2159,6 +2164,7 @@ components:
|
|||||||
type: string
|
type: string
|
||||||
required:
|
required:
|
||||||
- requiredFile
|
- requiredFile
|
||||||
|
type: object
|
||||||
Dog_allOf:
|
Dog_allOf:
|
||||||
properties:
|
properties:
|
||||||
breed:
|
breed:
|
||||||
|
@ -2037,6 +2037,7 @@ components:
|
|||||||
status:
|
status:
|
||||||
description: Updated status of the pet
|
description: Updated status of the pet
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
uploadFile_request:
|
uploadFile_request:
|
||||||
properties:
|
properties:
|
||||||
additionalMetadata:
|
additionalMetadata:
|
||||||
@ -2046,6 +2047,7 @@ components:
|
|||||||
description: file to upload
|
description: file to upload
|
||||||
format: binary
|
format: binary
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
testEnumParameters_request:
|
testEnumParameters_request:
|
||||||
properties:
|
properties:
|
||||||
enum_form_string_array:
|
enum_form_string_array:
|
||||||
@ -2065,6 +2067,7 @@ components:
|
|||||||
- -efg
|
- -efg
|
||||||
- (xyz)
|
- (xyz)
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
testEndpointParameters_request:
|
testEndpointParameters_request:
|
||||||
properties:
|
properties:
|
||||||
integer:
|
integer:
|
||||||
@ -2137,6 +2140,7 @@ components:
|
|||||||
- double
|
- double
|
||||||
- number
|
- number
|
||||||
- pattern_without_delimiter
|
- pattern_without_delimiter
|
||||||
|
type: object
|
||||||
testJsonFormData_request:
|
testJsonFormData_request:
|
||||||
properties:
|
properties:
|
||||||
param:
|
param:
|
||||||
@ -2148,6 +2152,7 @@ components:
|
|||||||
required:
|
required:
|
||||||
- param
|
- param
|
||||||
- param2
|
- param2
|
||||||
|
type: object
|
||||||
uploadFileWithRequiredFile_request:
|
uploadFileWithRequiredFile_request:
|
||||||
properties:
|
properties:
|
||||||
additionalMetadata:
|
additionalMetadata:
|
||||||
@ -2159,6 +2164,7 @@ components:
|
|||||||
type: string
|
type: string
|
||||||
required:
|
required:
|
||||||
- requiredFile
|
- requiredFile
|
||||||
|
type: object
|
||||||
Dog_allOf:
|
Dog_allOf:
|
||||||
properties:
|
properties:
|
||||||
breed:
|
breed:
|
||||||
|
@ -2037,6 +2037,7 @@ components:
|
|||||||
status:
|
status:
|
||||||
description: Updated status of the pet
|
description: Updated status of the pet
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
uploadFile_request:
|
uploadFile_request:
|
||||||
properties:
|
properties:
|
||||||
additionalMetadata:
|
additionalMetadata:
|
||||||
@ -2046,6 +2047,7 @@ components:
|
|||||||
description: file to upload
|
description: file to upload
|
||||||
format: binary
|
format: binary
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
testEnumParameters_request:
|
testEnumParameters_request:
|
||||||
properties:
|
properties:
|
||||||
enum_form_string_array:
|
enum_form_string_array:
|
||||||
@ -2065,6 +2067,7 @@ components:
|
|||||||
- -efg
|
- -efg
|
||||||
- (xyz)
|
- (xyz)
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
testEndpointParameters_request:
|
testEndpointParameters_request:
|
||||||
properties:
|
properties:
|
||||||
integer:
|
integer:
|
||||||
@ -2137,6 +2140,7 @@ components:
|
|||||||
- double
|
- double
|
||||||
- number
|
- number
|
||||||
- pattern_without_delimiter
|
- pattern_without_delimiter
|
||||||
|
type: object
|
||||||
testJsonFormData_request:
|
testJsonFormData_request:
|
||||||
properties:
|
properties:
|
||||||
param:
|
param:
|
||||||
@ -2148,6 +2152,7 @@ components:
|
|||||||
required:
|
required:
|
||||||
- param
|
- param
|
||||||
- param2
|
- param2
|
||||||
|
type: object
|
||||||
uploadFileWithRequiredFile_request:
|
uploadFileWithRequiredFile_request:
|
||||||
properties:
|
properties:
|
||||||
additionalMetadata:
|
additionalMetadata:
|
||||||
@ -2159,6 +2164,7 @@ components:
|
|||||||
type: string
|
type: string
|
||||||
required:
|
required:
|
||||||
- requiredFile
|
- requiredFile
|
||||||
|
type: object
|
||||||
Dog_allOf:
|
Dog_allOf:
|
||||||
properties:
|
properties:
|
||||||
breed:
|
breed:
|
||||||
|
@ -2111,6 +2111,7 @@ components:
|
|||||||
status:
|
status:
|
||||||
description: Updated status of the pet
|
description: Updated status of the pet
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
uploadFile_request:
|
uploadFile_request:
|
||||||
properties:
|
properties:
|
||||||
additionalMetadata:
|
additionalMetadata:
|
||||||
@ -2120,6 +2121,7 @@ components:
|
|||||||
description: file to upload
|
description: file to upload
|
||||||
format: binary
|
format: binary
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
testEnumParameters_request:
|
testEnumParameters_request:
|
||||||
properties:
|
properties:
|
||||||
enum_form_string_array:
|
enum_form_string_array:
|
||||||
@ -2139,6 +2141,7 @@ components:
|
|||||||
- -efg
|
- -efg
|
||||||
- (xyz)
|
- (xyz)
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
testEndpointParameters_request:
|
testEndpointParameters_request:
|
||||||
properties:
|
properties:
|
||||||
integer:
|
integer:
|
||||||
@ -2211,6 +2214,7 @@ components:
|
|||||||
- double
|
- double
|
||||||
- number
|
- number
|
||||||
- pattern_without_delimiter
|
- pattern_without_delimiter
|
||||||
|
type: object
|
||||||
testJsonFormData_request:
|
testJsonFormData_request:
|
||||||
properties:
|
properties:
|
||||||
param:
|
param:
|
||||||
@ -2222,6 +2226,7 @@ components:
|
|||||||
required:
|
required:
|
||||||
- param
|
- param
|
||||||
- param2
|
- param2
|
||||||
|
type: object
|
||||||
uploadFileWithRequiredFile_request:
|
uploadFileWithRequiredFile_request:
|
||||||
properties:
|
properties:
|
||||||
additionalMetadata:
|
additionalMetadata:
|
||||||
@ -2233,6 +2238,7 @@ components:
|
|||||||
type: string
|
type: string
|
||||||
required:
|
required:
|
||||||
- requiredFile
|
- requiredFile
|
||||||
|
type: object
|
||||||
Dog_allOf:
|
Dog_allOf:
|
||||||
properties:
|
properties:
|
||||||
breed:
|
breed:
|
||||||
|
@ -2111,6 +2111,7 @@ components:
|
|||||||
status:
|
status:
|
||||||
description: Updated status of the pet
|
description: Updated status of the pet
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
uploadFile_request:
|
uploadFile_request:
|
||||||
properties:
|
properties:
|
||||||
additionalMetadata:
|
additionalMetadata:
|
||||||
@ -2120,6 +2121,7 @@ components:
|
|||||||
description: file to upload
|
description: file to upload
|
||||||
format: binary
|
format: binary
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
testEnumParameters_request:
|
testEnumParameters_request:
|
||||||
properties:
|
properties:
|
||||||
enum_form_string_array:
|
enum_form_string_array:
|
||||||
@ -2139,6 +2141,7 @@ components:
|
|||||||
- -efg
|
- -efg
|
||||||
- (xyz)
|
- (xyz)
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
testEndpointParameters_request:
|
testEndpointParameters_request:
|
||||||
properties:
|
properties:
|
||||||
integer:
|
integer:
|
||||||
@ -2211,6 +2214,7 @@ components:
|
|||||||
- double
|
- double
|
||||||
- number
|
- number
|
||||||
- pattern_without_delimiter
|
- pattern_without_delimiter
|
||||||
|
type: object
|
||||||
testJsonFormData_request:
|
testJsonFormData_request:
|
||||||
properties:
|
properties:
|
||||||
param:
|
param:
|
||||||
@ -2222,6 +2226,7 @@ components:
|
|||||||
required:
|
required:
|
||||||
- param
|
- param
|
||||||
- param2
|
- param2
|
||||||
|
type: object
|
||||||
uploadFileWithRequiredFile_request:
|
uploadFileWithRequiredFile_request:
|
||||||
properties:
|
properties:
|
||||||
additionalMetadata:
|
additionalMetadata:
|
||||||
@ -2233,6 +2238,7 @@ components:
|
|||||||
type: string
|
type: string
|
||||||
required:
|
required:
|
||||||
- requiredFile
|
- requiredFile
|
||||||
|
type: object
|
||||||
Dog_allOf:
|
Dog_allOf:
|
||||||
properties:
|
properties:
|
||||||
breed:
|
breed:
|
||||||
|
@ -2111,6 +2111,7 @@ components:
|
|||||||
status:
|
status:
|
||||||
description: Updated status of the pet
|
description: Updated status of the pet
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
uploadFile_request:
|
uploadFile_request:
|
||||||
properties:
|
properties:
|
||||||
additionalMetadata:
|
additionalMetadata:
|
||||||
@ -2120,6 +2121,7 @@ components:
|
|||||||
description: file to upload
|
description: file to upload
|
||||||
format: binary
|
format: binary
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
testEnumParameters_request:
|
testEnumParameters_request:
|
||||||
properties:
|
properties:
|
||||||
enum_form_string_array:
|
enum_form_string_array:
|
||||||
@ -2139,6 +2141,7 @@ components:
|
|||||||
- -efg
|
- -efg
|
||||||
- (xyz)
|
- (xyz)
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
testEndpointParameters_request:
|
testEndpointParameters_request:
|
||||||
properties:
|
properties:
|
||||||
integer:
|
integer:
|
||||||
@ -2211,6 +2214,7 @@ components:
|
|||||||
- double
|
- double
|
||||||
- number
|
- number
|
||||||
- pattern_without_delimiter
|
- pattern_without_delimiter
|
||||||
|
type: object
|
||||||
testJsonFormData_request:
|
testJsonFormData_request:
|
||||||
properties:
|
properties:
|
||||||
param:
|
param:
|
||||||
@ -2222,6 +2226,7 @@ components:
|
|||||||
required:
|
required:
|
||||||
- param
|
- param
|
||||||
- param2
|
- param2
|
||||||
|
type: object
|
||||||
uploadFileWithRequiredFile_request:
|
uploadFileWithRequiredFile_request:
|
||||||
properties:
|
properties:
|
||||||
additionalMetadata:
|
additionalMetadata:
|
||||||
@ -2233,6 +2238,7 @@ components:
|
|||||||
type: string
|
type: string
|
||||||
required:
|
required:
|
||||||
- requiredFile
|
- requiredFile
|
||||||
|
type: object
|
||||||
Dog_allOf:
|
Dog_allOf:
|
||||||
properties:
|
properties:
|
||||||
breed:
|
breed:
|
||||||
|
@ -2111,6 +2111,7 @@ components:
|
|||||||
status:
|
status:
|
||||||
description: Updated status of the pet
|
description: Updated status of the pet
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
uploadFile_request:
|
uploadFile_request:
|
||||||
properties:
|
properties:
|
||||||
additionalMetadata:
|
additionalMetadata:
|
||||||
@ -2120,6 +2121,7 @@ components:
|
|||||||
description: file to upload
|
description: file to upload
|
||||||
format: binary
|
format: binary
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
testEnumParameters_request:
|
testEnumParameters_request:
|
||||||
properties:
|
properties:
|
||||||
enum_form_string_array:
|
enum_form_string_array:
|
||||||
@ -2139,6 +2141,7 @@ components:
|
|||||||
- -efg
|
- -efg
|
||||||
- (xyz)
|
- (xyz)
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
testEndpointParameters_request:
|
testEndpointParameters_request:
|
||||||
properties:
|
properties:
|
||||||
integer:
|
integer:
|
||||||
@ -2211,6 +2214,7 @@ components:
|
|||||||
- double
|
- double
|
||||||
- number
|
- number
|
||||||
- pattern_without_delimiter
|
- pattern_without_delimiter
|
||||||
|
type: object
|
||||||
testJsonFormData_request:
|
testJsonFormData_request:
|
||||||
properties:
|
properties:
|
||||||
param:
|
param:
|
||||||
@ -2222,6 +2226,7 @@ components:
|
|||||||
required:
|
required:
|
||||||
- param
|
- param
|
||||||
- param2
|
- param2
|
||||||
|
type: object
|
||||||
uploadFileWithRequiredFile_request:
|
uploadFileWithRequiredFile_request:
|
||||||
properties:
|
properties:
|
||||||
additionalMetadata:
|
additionalMetadata:
|
||||||
@ -2233,6 +2238,7 @@ components:
|
|||||||
type: string
|
type: string
|
||||||
required:
|
required:
|
||||||
- requiredFile
|
- requiredFile
|
||||||
|
type: object
|
||||||
Dog_allOf:
|
Dog_allOf:
|
||||||
properties:
|
properties:
|
||||||
breed:
|
breed:
|
||||||
|
@ -2111,6 +2111,7 @@ components:
|
|||||||
status:
|
status:
|
||||||
description: Updated status of the pet
|
description: Updated status of the pet
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
uploadFile_request:
|
uploadFile_request:
|
||||||
properties:
|
properties:
|
||||||
additionalMetadata:
|
additionalMetadata:
|
||||||
@ -2120,6 +2121,7 @@ components:
|
|||||||
description: file to upload
|
description: file to upload
|
||||||
format: binary
|
format: binary
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
testEnumParameters_request:
|
testEnumParameters_request:
|
||||||
properties:
|
properties:
|
||||||
enum_form_string_array:
|
enum_form_string_array:
|
||||||
@ -2139,6 +2141,7 @@ components:
|
|||||||
- -efg
|
- -efg
|
||||||
- (xyz)
|
- (xyz)
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
testEndpointParameters_request:
|
testEndpointParameters_request:
|
||||||
properties:
|
properties:
|
||||||
integer:
|
integer:
|
||||||
@ -2211,6 +2214,7 @@ components:
|
|||||||
- double
|
- double
|
||||||
- number
|
- number
|
||||||
- pattern_without_delimiter
|
- pattern_without_delimiter
|
||||||
|
type: object
|
||||||
testJsonFormData_request:
|
testJsonFormData_request:
|
||||||
properties:
|
properties:
|
||||||
param:
|
param:
|
||||||
@ -2222,6 +2226,7 @@ components:
|
|||||||
required:
|
required:
|
||||||
- param
|
- param
|
||||||
- param2
|
- param2
|
||||||
|
type: object
|
||||||
uploadFileWithRequiredFile_request:
|
uploadFileWithRequiredFile_request:
|
||||||
properties:
|
properties:
|
||||||
additionalMetadata:
|
additionalMetadata:
|
||||||
@ -2233,6 +2238,7 @@ components:
|
|||||||
type: string
|
type: string
|
||||||
required:
|
required:
|
||||||
- requiredFile
|
- requiredFile
|
||||||
|
type: object
|
||||||
Dog_allOf:
|
Dog_allOf:
|
||||||
properties:
|
properties:
|
||||||
breed:
|
breed:
|
||||||
|
@ -979,7 +979,8 @@
|
|||||||
"description" : "Updated status of the pet",
|
"description" : "Updated status of the pet",
|
||||||
"type" : "string"
|
"type" : "string"
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
|
"type" : "object"
|
||||||
},
|
},
|
||||||
"uploadFile_request" : {
|
"uploadFile_request" : {
|
||||||
"properties" : {
|
"properties" : {
|
||||||
@ -992,7 +993,8 @@
|
|||||||
"format" : "binary",
|
"format" : "binary",
|
||||||
"type" : "string"
|
"type" : "string"
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
|
"type" : "object"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"securitySchemes" : {
|
"securitySchemes" : {
|
||||||
|
@ -1008,7 +1008,8 @@
|
|||||||
"description" : "Updated status of the pet",
|
"description" : "Updated status of the pet",
|
||||||
"type" : "string"
|
"type" : "string"
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
|
"type" : "object"
|
||||||
},
|
},
|
||||||
"uploadFile_request" : {
|
"uploadFile_request" : {
|
||||||
"properties" : {
|
"properties" : {
|
||||||
@ -1021,7 +1022,8 @@
|
|||||||
"format" : "binary",
|
"format" : "binary",
|
||||||
"type" : "string"
|
"type" : "string"
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
|
"type" : "object"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"securitySchemes" : {
|
"securitySchemes" : {
|
||||||
|
@ -1008,7 +1008,8 @@
|
|||||||
"description" : "Updated status of the pet",
|
"description" : "Updated status of the pet",
|
||||||
"type" : "string"
|
"type" : "string"
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
|
"type" : "object"
|
||||||
},
|
},
|
||||||
"uploadFile_request" : {
|
"uploadFile_request" : {
|
||||||
"properties" : {
|
"properties" : {
|
||||||
@ -1021,7 +1022,8 @@
|
|||||||
"format" : "binary",
|
"format" : "binary",
|
||||||
"type" : "string"
|
"type" : "string"
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
|
"type" : "object"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"securitySchemes" : {
|
"securitySchemes" : {
|
||||||
|
@ -1008,7 +1008,8 @@
|
|||||||
"description" : "Updated status of the pet",
|
"description" : "Updated status of the pet",
|
||||||
"type" : "string"
|
"type" : "string"
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
|
"type" : "object"
|
||||||
},
|
},
|
||||||
"uploadFile_request" : {
|
"uploadFile_request" : {
|
||||||
"properties" : {
|
"properties" : {
|
||||||
@ -1021,7 +1022,8 @@
|
|||||||
"format" : "binary",
|
"format" : "binary",
|
||||||
"type" : "string"
|
"type" : "string"
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
|
"type" : "object"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"securitySchemes" : {
|
"securitySchemes" : {
|
||||||
|
@ -2699,7 +2699,8 @@
|
|||||||
"description" : "Updated status of the pet",
|
"description" : "Updated status of the pet",
|
||||||
"type" : "string"
|
"type" : "string"
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
|
"type" : "object"
|
||||||
},
|
},
|
||||||
"uploadFile_request" : {
|
"uploadFile_request" : {
|
||||||
"properties" : {
|
"properties" : {
|
||||||
@ -2712,7 +2713,8 @@
|
|||||||
"format" : "binary",
|
"format" : "binary",
|
||||||
"type" : "string"
|
"type" : "string"
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
|
"type" : "object"
|
||||||
},
|
},
|
||||||
"testEnumParameters_request" : {
|
"testEnumParameters_request" : {
|
||||||
"properties" : {
|
"properties" : {
|
||||||
@ -2731,7 +2733,8 @@
|
|||||||
"enum" : [ "_abc", "-efg", "(xyz)" ],
|
"enum" : [ "_abc", "-efg", "(xyz)" ],
|
||||||
"type" : "string"
|
"type" : "string"
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
|
"type" : "object"
|
||||||
},
|
},
|
||||||
"testEndpointParameters_request" : {
|
"testEndpointParameters_request" : {
|
||||||
"properties" : {
|
"properties" : {
|
||||||
@ -2815,7 +2818,8 @@
|
|||||||
"type" : "string"
|
"type" : "string"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"required" : [ "byte", "double", "number", "pattern_without_delimiter" ]
|
"required" : [ "byte", "double", "number", "pattern_without_delimiter" ],
|
||||||
|
"type" : "object"
|
||||||
},
|
},
|
||||||
"testJsonFormData_request" : {
|
"testJsonFormData_request" : {
|
||||||
"properties" : {
|
"properties" : {
|
||||||
@ -2828,7 +2832,8 @@
|
|||||||
"type" : "string"
|
"type" : "string"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"required" : [ "param", "param2" ]
|
"required" : [ "param", "param2" ],
|
||||||
|
"type" : "object"
|
||||||
},
|
},
|
||||||
"uploadFileWithRequiredFile_request" : {
|
"uploadFileWithRequiredFile_request" : {
|
||||||
"properties" : {
|
"properties" : {
|
||||||
@ -2842,7 +2847,8 @@
|
|||||||
"type" : "string"
|
"type" : "string"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"required" : [ "requiredFile" ]
|
"required" : [ "requiredFile" ],
|
||||||
|
"type" : "object"
|
||||||
},
|
},
|
||||||
"Dog_allOf" : {
|
"Dog_allOf" : {
|
||||||
"properties" : {
|
"properties" : {
|
||||||
|
@ -1008,7 +1008,8 @@
|
|||||||
"description" : "Updated status of the pet",
|
"description" : "Updated status of the pet",
|
||||||
"type" : "string"
|
"type" : "string"
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
|
"type" : "object"
|
||||||
},
|
},
|
||||||
"uploadFile_request" : {
|
"uploadFile_request" : {
|
||||||
"properties" : {
|
"properties" : {
|
||||||
@ -1021,7 +1022,8 @@
|
|||||||
"format" : "binary",
|
"format" : "binary",
|
||||||
"type" : "string"
|
"type" : "string"
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
|
"type" : "object"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"securitySchemes" : {
|
"securitySchemes" : {
|
||||||
|
@ -1008,7 +1008,8 @@
|
|||||||
"description" : "Updated status of the pet",
|
"description" : "Updated status of the pet",
|
||||||
"type" : "string"
|
"type" : "string"
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
|
"type" : "object"
|
||||||
},
|
},
|
||||||
"uploadFile_request" : {
|
"uploadFile_request" : {
|
||||||
"properties" : {
|
"properties" : {
|
||||||
@ -1021,7 +1022,8 @@
|
|||||||
"format" : "binary",
|
"format" : "binary",
|
||||||
"type" : "string"
|
"type" : "string"
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
|
"type" : "object"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"securitySchemes" : {
|
"securitySchemes" : {
|
||||||
|
@ -1008,7 +1008,8 @@
|
|||||||
"description" : "Updated status of the pet",
|
"description" : "Updated status of the pet",
|
||||||
"type" : "string"
|
"type" : "string"
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
|
"type" : "object"
|
||||||
},
|
},
|
||||||
"uploadFile_request" : {
|
"uploadFile_request" : {
|
||||||
"properties" : {
|
"properties" : {
|
||||||
@ -1021,7 +1022,8 @@
|
|||||||
"format" : "binary",
|
"format" : "binary",
|
||||||
"type" : "string"
|
"type" : "string"
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
|
"type" : "object"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"securitySchemes" : {
|
"securitySchemes" : {
|
||||||
|
@ -1008,7 +1008,8 @@
|
|||||||
"description" : "Updated status of the pet",
|
"description" : "Updated status of the pet",
|
||||||
"type" : "string"
|
"type" : "string"
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
|
"type" : "object"
|
||||||
},
|
},
|
||||||
"uploadFile_request" : {
|
"uploadFile_request" : {
|
||||||
"properties" : {
|
"properties" : {
|
||||||
@ -1021,7 +1022,8 @@
|
|||||||
"format" : "binary",
|
"format" : "binary",
|
||||||
"type" : "string"
|
"type" : "string"
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
|
"type" : "object"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"securitySchemes" : {
|
"securitySchemes" : {
|
||||||
|
@ -1008,7 +1008,8 @@
|
|||||||
"description" : "Updated status of the pet",
|
"description" : "Updated status of the pet",
|
||||||
"type" : "string"
|
"type" : "string"
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
|
"type" : "object"
|
||||||
},
|
},
|
||||||
"uploadFile_request" : {
|
"uploadFile_request" : {
|
||||||
"properties" : {
|
"properties" : {
|
||||||
@ -1021,7 +1022,8 @@
|
|||||||
"format" : "binary",
|
"format" : "binary",
|
||||||
"type" : "string"
|
"type" : "string"
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
|
"type" : "object"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"securitySchemes" : {
|
"securitySchemes" : {
|
||||||
|
@ -1008,7 +1008,8 @@
|
|||||||
"description" : "Updated status of the pet",
|
"description" : "Updated status of the pet",
|
||||||
"type" : "string"
|
"type" : "string"
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
|
"type" : "object"
|
||||||
},
|
},
|
||||||
"uploadFile_request" : {
|
"uploadFile_request" : {
|
||||||
"properties" : {
|
"properties" : {
|
||||||
@ -1021,7 +1022,8 @@
|
|||||||
"format" : "binary",
|
"format" : "binary",
|
||||||
"type" : "string"
|
"type" : "string"
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
|
"type" : "object"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"securitySchemes" : {
|
"securitySchemes" : {
|
||||||
|
@ -1008,7 +1008,8 @@
|
|||||||
"description" : "Updated status of the pet",
|
"description" : "Updated status of the pet",
|
||||||
"type" : "string"
|
"type" : "string"
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
|
"type" : "object"
|
||||||
},
|
},
|
||||||
"uploadFile_request" : {
|
"uploadFile_request" : {
|
||||||
"properties" : {
|
"properties" : {
|
||||||
@ -1021,7 +1022,8 @@
|
|||||||
"format" : "binary",
|
"format" : "binary",
|
||||||
"type" : "string"
|
"type" : "string"
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
|
"type" : "object"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"securitySchemes" : {
|
"securitySchemes" : {
|
||||||
|
@ -2111,6 +2111,7 @@ components:
|
|||||||
status:
|
status:
|
||||||
description: Updated status of the pet
|
description: Updated status of the pet
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
uploadFile_request:
|
uploadFile_request:
|
||||||
properties:
|
properties:
|
||||||
additionalMetadata:
|
additionalMetadata:
|
||||||
@ -2120,6 +2121,7 @@ components:
|
|||||||
description: file to upload
|
description: file to upload
|
||||||
format: binary
|
format: binary
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
testEnumParameters_request:
|
testEnumParameters_request:
|
||||||
properties:
|
properties:
|
||||||
enum_form_string_array:
|
enum_form_string_array:
|
||||||
@ -2139,6 +2141,7 @@ components:
|
|||||||
- -efg
|
- -efg
|
||||||
- (xyz)
|
- (xyz)
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
testEndpointParameters_request:
|
testEndpointParameters_request:
|
||||||
properties:
|
properties:
|
||||||
integer:
|
integer:
|
||||||
@ -2211,6 +2214,7 @@ components:
|
|||||||
- double
|
- double
|
||||||
- number
|
- number
|
||||||
- pattern_without_delimiter
|
- pattern_without_delimiter
|
||||||
|
type: object
|
||||||
testJsonFormData_request:
|
testJsonFormData_request:
|
||||||
properties:
|
properties:
|
||||||
param:
|
param:
|
||||||
@ -2222,6 +2226,7 @@ components:
|
|||||||
required:
|
required:
|
||||||
- param
|
- param
|
||||||
- param2
|
- param2
|
||||||
|
type: object
|
||||||
uploadFileWithRequiredFile_request:
|
uploadFileWithRequiredFile_request:
|
||||||
properties:
|
properties:
|
||||||
additionalMetadata:
|
additionalMetadata:
|
||||||
@ -2233,6 +2238,7 @@ components:
|
|||||||
type: string
|
type: string
|
||||||
required:
|
required:
|
||||||
- requiredFile
|
- requiredFile
|
||||||
|
type: object
|
||||||
Dog_allOf:
|
Dog_allOf:
|
||||||
properties:
|
properties:
|
||||||
breed:
|
breed:
|
||||||
|
@ -2111,6 +2111,7 @@ components:
|
|||||||
status:
|
status:
|
||||||
description: Updated status of the pet
|
description: Updated status of the pet
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
uploadFile_request:
|
uploadFile_request:
|
||||||
properties:
|
properties:
|
||||||
additionalMetadata:
|
additionalMetadata:
|
||||||
@ -2120,6 +2121,7 @@ components:
|
|||||||
description: file to upload
|
description: file to upload
|
||||||
format: binary
|
format: binary
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
testEnumParameters_request:
|
testEnumParameters_request:
|
||||||
properties:
|
properties:
|
||||||
enum_form_string_array:
|
enum_form_string_array:
|
||||||
@ -2139,6 +2141,7 @@ components:
|
|||||||
- -efg
|
- -efg
|
||||||
- (xyz)
|
- (xyz)
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
testEndpointParameters_request:
|
testEndpointParameters_request:
|
||||||
properties:
|
properties:
|
||||||
integer:
|
integer:
|
||||||
@ -2211,6 +2214,7 @@ components:
|
|||||||
- double
|
- double
|
||||||
- number
|
- number
|
||||||
- pattern_without_delimiter
|
- pattern_without_delimiter
|
||||||
|
type: object
|
||||||
testJsonFormData_request:
|
testJsonFormData_request:
|
||||||
properties:
|
properties:
|
||||||
param:
|
param:
|
||||||
@ -2222,6 +2226,7 @@ components:
|
|||||||
required:
|
required:
|
||||||
- param
|
- param
|
||||||
- param2
|
- param2
|
||||||
|
type: object
|
||||||
uploadFileWithRequiredFile_request:
|
uploadFileWithRequiredFile_request:
|
||||||
properties:
|
properties:
|
||||||
additionalMetadata:
|
additionalMetadata:
|
||||||
@ -2233,6 +2238,7 @@ components:
|
|||||||
type: string
|
type: string
|
||||||
required:
|
required:
|
||||||
- requiredFile
|
- requiredFile
|
||||||
|
type: object
|
||||||
Dog_allOf:
|
Dog_allOf:
|
||||||
properties:
|
properties:
|
||||||
breed:
|
breed:
|
||||||
|
@ -742,6 +742,7 @@ components:
|
|||||||
status:
|
status:
|
||||||
description: Updated status of the pet
|
description: Updated status of the pet
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
uploadFile_request:
|
uploadFile_request:
|
||||||
properties:
|
properties:
|
||||||
additionalMetadata:
|
additionalMetadata:
|
||||||
@ -751,6 +752,7 @@ components:
|
|||||||
description: file to upload
|
description: file to upload
|
||||||
format: binary
|
format: binary
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
securitySchemes:
|
securitySchemes:
|
||||||
petstore_auth:
|
petstore_auth:
|
||||||
flows:
|
flows:
|
||||||
|
@ -742,6 +742,7 @@ components:
|
|||||||
status:
|
status:
|
||||||
description: Updated status of the pet
|
description: Updated status of the pet
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
uploadFile_request:
|
uploadFile_request:
|
||||||
properties:
|
properties:
|
||||||
additionalMetadata:
|
additionalMetadata:
|
||||||
@ -751,6 +752,7 @@ components:
|
|||||||
description: file to upload
|
description: file to upload
|
||||||
format: binary
|
format: binary
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
securitySchemes:
|
securitySchemes:
|
||||||
petstore_auth:
|
petstore_auth:
|
||||||
flows:
|
flows:
|
||||||
|
@ -742,6 +742,7 @@ components:
|
|||||||
status:
|
status:
|
||||||
description: Updated status of the pet
|
description: Updated status of the pet
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
uploadFile_request:
|
uploadFile_request:
|
||||||
properties:
|
properties:
|
||||||
additionalMetadata:
|
additionalMetadata:
|
||||||
@ -751,6 +752,7 @@ components:
|
|||||||
description: file to upload
|
description: file to upload
|
||||||
format: binary
|
format: binary
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
securitySchemes:
|
securitySchemes:
|
||||||
petstore_auth:
|
petstore_auth:
|
||||||
flows:
|
flows:
|
||||||
|
@ -742,6 +742,7 @@ components:
|
|||||||
status:
|
status:
|
||||||
description: Updated status of the pet
|
description: Updated status of the pet
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
uploadFile_request:
|
uploadFile_request:
|
||||||
properties:
|
properties:
|
||||||
additionalMetadata:
|
additionalMetadata:
|
||||||
@ -751,6 +752,7 @@ components:
|
|||||||
description: file to upload
|
description: file to upload
|
||||||
format: binary
|
format: binary
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
securitySchemes:
|
securitySchemes:
|
||||||
petstore_auth:
|
petstore_auth:
|
||||||
flows:
|
flows:
|
||||||
|
@ -742,6 +742,7 @@ components:
|
|||||||
status:
|
status:
|
||||||
description: Updated status of the pet
|
description: Updated status of the pet
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
uploadFile_request:
|
uploadFile_request:
|
||||||
properties:
|
properties:
|
||||||
additionalMetadata:
|
additionalMetadata:
|
||||||
@ -751,6 +752,7 @@ components:
|
|||||||
description: file to upload
|
description: file to upload
|
||||||
format: binary
|
format: binary
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
securitySchemes:
|
securitySchemes:
|
||||||
petstore_auth:
|
petstore_auth:
|
||||||
flows:
|
flows:
|
||||||
|
@ -799,6 +799,7 @@ components:
|
|||||||
status:
|
status:
|
||||||
description: Updated status of the pet
|
description: Updated status of the pet
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
uploadFile_request:
|
uploadFile_request:
|
||||||
properties:
|
properties:
|
||||||
additionalMetadata:
|
additionalMetadata:
|
||||||
@ -808,6 +809,7 @@ components:
|
|||||||
description: file to upload
|
description: file to upload
|
||||||
format: binary
|
format: binary
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
securitySchemes:
|
securitySchemes:
|
||||||
petstore_auth:
|
petstore_auth:
|
||||||
flows:
|
flows:
|
||||||
|
@ -799,6 +799,7 @@ components:
|
|||||||
status:
|
status:
|
||||||
description: Updated status of the pet
|
description: Updated status of the pet
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
uploadFile_request:
|
uploadFile_request:
|
||||||
properties:
|
properties:
|
||||||
additionalMetadata:
|
additionalMetadata:
|
||||||
@ -808,6 +809,7 @@ components:
|
|||||||
description: file to upload
|
description: file to upload
|
||||||
format: binary
|
format: binary
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
securitySchemes:
|
securitySchemes:
|
||||||
petstore_auth:
|
petstore_auth:
|
||||||
flows:
|
flows:
|
||||||
|
@ -788,6 +788,7 @@ components:
|
|||||||
status:
|
status:
|
||||||
description: Updated status of the pet
|
description: Updated status of the pet
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
uploadFile_request:
|
uploadFile_request:
|
||||||
properties:
|
properties:
|
||||||
additionalMetadata:
|
additionalMetadata:
|
||||||
@ -797,6 +798,7 @@ components:
|
|||||||
description: file to upload
|
description: file to upload
|
||||||
format: binary
|
format: binary
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
securitySchemes:
|
securitySchemes:
|
||||||
petstore_auth:
|
petstore_auth:
|
||||||
flows:
|
flows:
|
||||||
|
@ -1469,6 +1469,7 @@ components:
|
|||||||
status:
|
status:
|
||||||
description: Updated status of the pet
|
description: Updated status of the pet
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
uploadFile_request:
|
uploadFile_request:
|
||||||
properties:
|
properties:
|
||||||
additionalMetadata:
|
additionalMetadata:
|
||||||
@ -1478,6 +1479,7 @@ components:
|
|||||||
description: file to upload
|
description: file to upload
|
||||||
format: binary
|
format: binary
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
testEnumParameters_request:
|
testEnumParameters_request:
|
||||||
properties:
|
properties:
|
||||||
enum_form_string:
|
enum_form_string:
|
||||||
@ -1488,6 +1490,7 @@ components:
|
|||||||
- -efg
|
- -efg
|
||||||
- (xyz)
|
- (xyz)
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
testEndpointParameters_request:
|
testEndpointParameters_request:
|
||||||
properties:
|
properties:
|
||||||
integer:
|
integer:
|
||||||
@ -1560,6 +1563,7 @@ components:
|
|||||||
- double
|
- double
|
||||||
- number
|
- number
|
||||||
- pattern_without_delimiter
|
- pattern_without_delimiter
|
||||||
|
type: object
|
||||||
testJsonFormData_request:
|
testJsonFormData_request:
|
||||||
properties:
|
properties:
|
||||||
param:
|
param:
|
||||||
@ -1571,6 +1575,7 @@ components:
|
|||||||
required:
|
required:
|
||||||
- param
|
- param
|
||||||
- param2
|
- param2
|
||||||
|
type: object
|
||||||
Dog_allOf:
|
Dog_allOf:
|
||||||
properties:
|
properties:
|
||||||
breed:
|
breed:
|
||||||
|
@ -2111,6 +2111,7 @@ components:
|
|||||||
status:
|
status:
|
||||||
description: Updated status of the pet
|
description: Updated status of the pet
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
uploadFile_request:
|
uploadFile_request:
|
||||||
properties:
|
properties:
|
||||||
additionalMetadata:
|
additionalMetadata:
|
||||||
@ -2120,6 +2121,7 @@ components:
|
|||||||
description: file to upload
|
description: file to upload
|
||||||
format: binary
|
format: binary
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
testEnumParameters_request:
|
testEnumParameters_request:
|
||||||
properties:
|
properties:
|
||||||
enum_form_string_array:
|
enum_form_string_array:
|
||||||
@ -2139,6 +2141,7 @@ components:
|
|||||||
- -efg
|
- -efg
|
||||||
- (xyz)
|
- (xyz)
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
testEndpointParameters_request:
|
testEndpointParameters_request:
|
||||||
properties:
|
properties:
|
||||||
integer:
|
integer:
|
||||||
@ -2211,6 +2214,7 @@ components:
|
|||||||
- double
|
- double
|
||||||
- number
|
- number
|
||||||
- pattern_without_delimiter
|
- pattern_without_delimiter
|
||||||
|
type: object
|
||||||
testJsonFormData_request:
|
testJsonFormData_request:
|
||||||
properties:
|
properties:
|
||||||
param:
|
param:
|
||||||
@ -2222,6 +2226,7 @@ components:
|
|||||||
required:
|
required:
|
||||||
- param
|
- param
|
||||||
- param2
|
- param2
|
||||||
|
type: object
|
||||||
uploadFileWithRequiredFile_request:
|
uploadFileWithRequiredFile_request:
|
||||||
properties:
|
properties:
|
||||||
additionalMetadata:
|
additionalMetadata:
|
||||||
@ -2233,6 +2238,7 @@ components:
|
|||||||
type: string
|
type: string
|
||||||
required:
|
required:
|
||||||
- requiredFile
|
- requiredFile
|
||||||
|
type: object
|
||||||
Dog_allOf:
|
Dog_allOf:
|
||||||
properties:
|
properties:
|
||||||
breed:
|
breed:
|
||||||
|
@ -2111,6 +2111,7 @@ components:
|
|||||||
status:
|
status:
|
||||||
description: Updated status of the pet
|
description: Updated status of the pet
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
uploadFile_request:
|
uploadFile_request:
|
||||||
properties:
|
properties:
|
||||||
additionalMetadata:
|
additionalMetadata:
|
||||||
@ -2120,6 +2121,7 @@ components:
|
|||||||
description: file to upload
|
description: file to upload
|
||||||
format: binary
|
format: binary
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
testEnumParameters_request:
|
testEnumParameters_request:
|
||||||
properties:
|
properties:
|
||||||
enum_form_string_array:
|
enum_form_string_array:
|
||||||
@ -2139,6 +2141,7 @@ components:
|
|||||||
- -efg
|
- -efg
|
||||||
- (xyz)
|
- (xyz)
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
testEndpointParameters_request:
|
testEndpointParameters_request:
|
||||||
properties:
|
properties:
|
||||||
integer:
|
integer:
|
||||||
@ -2211,6 +2214,7 @@ components:
|
|||||||
- double
|
- double
|
||||||
- number
|
- number
|
||||||
- pattern_without_delimiter
|
- pattern_without_delimiter
|
||||||
|
type: object
|
||||||
testJsonFormData_request:
|
testJsonFormData_request:
|
||||||
properties:
|
properties:
|
||||||
param:
|
param:
|
||||||
@ -2222,6 +2226,7 @@ components:
|
|||||||
required:
|
required:
|
||||||
- param
|
- param
|
||||||
- param2
|
- param2
|
||||||
|
type: object
|
||||||
uploadFileWithRequiredFile_request:
|
uploadFileWithRequiredFile_request:
|
||||||
properties:
|
properties:
|
||||||
additionalMetadata:
|
additionalMetadata:
|
||||||
@ -2233,6 +2238,7 @@ components:
|
|||||||
type: string
|
type: string
|
||||||
required:
|
required:
|
||||||
- requiredFile
|
- requiredFile
|
||||||
|
type: object
|
||||||
Dog_allOf:
|
Dog_allOf:
|
||||||
properties:
|
properties:
|
||||||
breed:
|
breed:
|
||||||
|
@ -2111,6 +2111,7 @@ components:
|
|||||||
status:
|
status:
|
||||||
description: Updated status of the pet
|
description: Updated status of the pet
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
uploadFile_request:
|
uploadFile_request:
|
||||||
properties:
|
properties:
|
||||||
additionalMetadata:
|
additionalMetadata:
|
||||||
@ -2120,6 +2121,7 @@ components:
|
|||||||
description: file to upload
|
description: file to upload
|
||||||
format: binary
|
format: binary
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
testEnumParameters_request:
|
testEnumParameters_request:
|
||||||
properties:
|
properties:
|
||||||
enum_form_string_array:
|
enum_form_string_array:
|
||||||
@ -2139,6 +2141,7 @@ components:
|
|||||||
- -efg
|
- -efg
|
||||||
- (xyz)
|
- (xyz)
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
testEndpointParameters_request:
|
testEndpointParameters_request:
|
||||||
properties:
|
properties:
|
||||||
integer:
|
integer:
|
||||||
@ -2211,6 +2214,7 @@ components:
|
|||||||
- double
|
- double
|
||||||
- number
|
- number
|
||||||
- pattern_without_delimiter
|
- pattern_without_delimiter
|
||||||
|
type: object
|
||||||
testJsonFormData_request:
|
testJsonFormData_request:
|
||||||
properties:
|
properties:
|
||||||
param:
|
param:
|
||||||
@ -2222,6 +2226,7 @@ components:
|
|||||||
required:
|
required:
|
||||||
- param
|
- param
|
||||||
- param2
|
- param2
|
||||||
|
type: object
|
||||||
uploadFileWithRequiredFile_request:
|
uploadFileWithRequiredFile_request:
|
||||||
properties:
|
properties:
|
||||||
additionalMetadata:
|
additionalMetadata:
|
||||||
@ -2233,6 +2238,7 @@ components:
|
|||||||
type: string
|
type: string
|
||||||
required:
|
required:
|
||||||
- requiredFile
|
- requiredFile
|
||||||
|
type: object
|
||||||
Dog_allOf:
|
Dog_allOf:
|
||||||
properties:
|
properties:
|
||||||
breed:
|
breed:
|
||||||
|
@ -2111,6 +2111,7 @@ components:
|
|||||||
status:
|
status:
|
||||||
description: Updated status of the pet
|
description: Updated status of the pet
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
uploadFile_request:
|
uploadFile_request:
|
||||||
properties:
|
properties:
|
||||||
additionalMetadata:
|
additionalMetadata:
|
||||||
@ -2120,6 +2121,7 @@ components:
|
|||||||
description: file to upload
|
description: file to upload
|
||||||
format: binary
|
format: binary
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
testEnumParameters_request:
|
testEnumParameters_request:
|
||||||
properties:
|
properties:
|
||||||
enum_form_string_array:
|
enum_form_string_array:
|
||||||
@ -2139,6 +2141,7 @@ components:
|
|||||||
- -efg
|
- -efg
|
||||||
- (xyz)
|
- (xyz)
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
testEndpointParameters_request:
|
testEndpointParameters_request:
|
||||||
properties:
|
properties:
|
||||||
integer:
|
integer:
|
||||||
@ -2211,6 +2214,7 @@ components:
|
|||||||
- double
|
- double
|
||||||
- number
|
- number
|
||||||
- pattern_without_delimiter
|
- pattern_without_delimiter
|
||||||
|
type: object
|
||||||
testJsonFormData_request:
|
testJsonFormData_request:
|
||||||
properties:
|
properties:
|
||||||
param:
|
param:
|
||||||
@ -2222,6 +2226,7 @@ components:
|
|||||||
required:
|
required:
|
||||||
- param
|
- param
|
||||||
- param2
|
- param2
|
||||||
|
type: object
|
||||||
uploadFileWithRequiredFile_request:
|
uploadFileWithRequiredFile_request:
|
||||||
properties:
|
properties:
|
||||||
additionalMetadata:
|
additionalMetadata:
|
||||||
@ -2233,6 +2238,7 @@ components:
|
|||||||
type: string
|
type: string
|
||||||
required:
|
required:
|
||||||
- requiredFile
|
- requiredFile
|
||||||
|
type: object
|
||||||
Dog_allOf:
|
Dog_allOf:
|
||||||
properties:
|
properties:
|
||||||
breed:
|
breed:
|
||||||
|
@ -2111,6 +2111,7 @@ components:
|
|||||||
status:
|
status:
|
||||||
description: Updated status of the pet
|
description: Updated status of the pet
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
uploadFile_request:
|
uploadFile_request:
|
||||||
properties:
|
properties:
|
||||||
additionalMetadata:
|
additionalMetadata:
|
||||||
@ -2120,6 +2121,7 @@ components:
|
|||||||
description: file to upload
|
description: file to upload
|
||||||
format: binary
|
format: binary
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
testEnumParameters_request:
|
testEnumParameters_request:
|
||||||
properties:
|
properties:
|
||||||
enum_form_string_array:
|
enum_form_string_array:
|
||||||
@ -2139,6 +2141,7 @@ components:
|
|||||||
- -efg
|
- -efg
|
||||||
- (xyz)
|
- (xyz)
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
testEndpointParameters_request:
|
testEndpointParameters_request:
|
||||||
properties:
|
properties:
|
||||||
integer:
|
integer:
|
||||||
@ -2211,6 +2214,7 @@ components:
|
|||||||
- double
|
- double
|
||||||
- number
|
- number
|
||||||
- pattern_without_delimiter
|
- pattern_without_delimiter
|
||||||
|
type: object
|
||||||
testJsonFormData_request:
|
testJsonFormData_request:
|
||||||
properties:
|
properties:
|
||||||
param:
|
param:
|
||||||
@ -2222,6 +2226,7 @@ components:
|
|||||||
required:
|
required:
|
||||||
- param
|
- param
|
||||||
- param2
|
- param2
|
||||||
|
type: object
|
||||||
uploadFileWithRequiredFile_request:
|
uploadFileWithRequiredFile_request:
|
||||||
properties:
|
properties:
|
||||||
additionalMetadata:
|
additionalMetadata:
|
||||||
@ -2233,6 +2238,7 @@ components:
|
|||||||
type: string
|
type: string
|
||||||
required:
|
required:
|
||||||
- requiredFile
|
- requiredFile
|
||||||
|
type: object
|
||||||
Dog_allOf:
|
Dog_allOf:
|
||||||
properties:
|
properties:
|
||||||
breed:
|
breed:
|
||||||
|
@ -2111,6 +2111,7 @@ components:
|
|||||||
status:
|
status:
|
||||||
description: Updated status of the pet
|
description: Updated status of the pet
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
uploadFile_request:
|
uploadFile_request:
|
||||||
properties:
|
properties:
|
||||||
additionalMetadata:
|
additionalMetadata:
|
||||||
@ -2120,6 +2121,7 @@ components:
|
|||||||
description: file to upload
|
description: file to upload
|
||||||
format: binary
|
format: binary
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
testEnumParameters_request:
|
testEnumParameters_request:
|
||||||
properties:
|
properties:
|
||||||
enum_form_string_array:
|
enum_form_string_array:
|
||||||
@ -2139,6 +2141,7 @@ components:
|
|||||||
- -efg
|
- -efg
|
||||||
- (xyz)
|
- (xyz)
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
testEndpointParameters_request:
|
testEndpointParameters_request:
|
||||||
properties:
|
properties:
|
||||||
integer:
|
integer:
|
||||||
@ -2211,6 +2214,7 @@ components:
|
|||||||
- double
|
- double
|
||||||
- number
|
- number
|
||||||
- pattern_without_delimiter
|
- pattern_without_delimiter
|
||||||
|
type: object
|
||||||
testJsonFormData_request:
|
testJsonFormData_request:
|
||||||
properties:
|
properties:
|
||||||
param:
|
param:
|
||||||
@ -2222,6 +2226,7 @@ components:
|
|||||||
required:
|
required:
|
||||||
- param
|
- param
|
||||||
- param2
|
- param2
|
||||||
|
type: object
|
||||||
uploadFileWithRequiredFile_request:
|
uploadFileWithRequiredFile_request:
|
||||||
properties:
|
properties:
|
||||||
additionalMetadata:
|
additionalMetadata:
|
||||||
@ -2233,6 +2238,7 @@ components:
|
|||||||
type: string
|
type: string
|
||||||
required:
|
required:
|
||||||
- requiredFile
|
- requiredFile
|
||||||
|
type: object
|
||||||
Dog_allOf:
|
Dog_allOf:
|
||||||
properties:
|
properties:
|
||||||
breed:
|
breed:
|
||||||
|
@ -2105,6 +2105,7 @@ components:
|
|||||||
status:
|
status:
|
||||||
description: Updated status of the pet
|
description: Updated status of the pet
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
uploadFile_request:
|
uploadFile_request:
|
||||||
properties:
|
properties:
|
||||||
additionalMetadata:
|
additionalMetadata:
|
||||||
@ -2114,6 +2115,7 @@ components:
|
|||||||
description: file to upload
|
description: file to upload
|
||||||
format: binary
|
format: binary
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
testEnumParameters_request:
|
testEnumParameters_request:
|
||||||
properties:
|
properties:
|
||||||
enum_form_string_array:
|
enum_form_string_array:
|
||||||
@ -2133,6 +2135,7 @@ components:
|
|||||||
- -efg
|
- -efg
|
||||||
- (xyz)
|
- (xyz)
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
testEndpointParameters_request:
|
testEndpointParameters_request:
|
||||||
properties:
|
properties:
|
||||||
integer:
|
integer:
|
||||||
@ -2205,6 +2208,7 @@ components:
|
|||||||
- double
|
- double
|
||||||
- number
|
- number
|
||||||
- pattern_without_delimiter
|
- pattern_without_delimiter
|
||||||
|
type: object
|
||||||
testJsonFormData_request:
|
testJsonFormData_request:
|
||||||
properties:
|
properties:
|
||||||
param:
|
param:
|
||||||
@ -2216,6 +2220,7 @@ components:
|
|||||||
required:
|
required:
|
||||||
- param
|
- param
|
||||||
- param2
|
- param2
|
||||||
|
type: object
|
||||||
uploadFileWithRequiredFile_request:
|
uploadFileWithRequiredFile_request:
|
||||||
properties:
|
properties:
|
||||||
additionalMetadata:
|
additionalMetadata:
|
||||||
@ -2227,6 +2232,7 @@ components:
|
|||||||
type: string
|
type: string
|
||||||
required:
|
required:
|
||||||
- requiredFile
|
- requiredFile
|
||||||
|
type: object
|
||||||
Dog_allOf:
|
Dog_allOf:
|
||||||
properties:
|
properties:
|
||||||
breed:
|
breed:
|
||||||
|
@ -2105,6 +2105,7 @@ components:
|
|||||||
status:
|
status:
|
||||||
description: Updated status of the pet
|
description: Updated status of the pet
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
uploadFile_request:
|
uploadFile_request:
|
||||||
properties:
|
properties:
|
||||||
additionalMetadata:
|
additionalMetadata:
|
||||||
@ -2114,6 +2115,7 @@ components:
|
|||||||
description: file to upload
|
description: file to upload
|
||||||
format: binary
|
format: binary
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
testEnumParameters_request:
|
testEnumParameters_request:
|
||||||
properties:
|
properties:
|
||||||
enum_form_string_array:
|
enum_form_string_array:
|
||||||
@ -2133,6 +2135,7 @@ components:
|
|||||||
- -efg
|
- -efg
|
||||||
- (xyz)
|
- (xyz)
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
testEndpointParameters_request:
|
testEndpointParameters_request:
|
||||||
properties:
|
properties:
|
||||||
integer:
|
integer:
|
||||||
@ -2205,6 +2208,7 @@ components:
|
|||||||
- double
|
- double
|
||||||
- number
|
- number
|
||||||
- pattern_without_delimiter
|
- pattern_without_delimiter
|
||||||
|
type: object
|
||||||
testJsonFormData_request:
|
testJsonFormData_request:
|
||||||
properties:
|
properties:
|
||||||
param:
|
param:
|
||||||
@ -2216,6 +2220,7 @@ components:
|
|||||||
required:
|
required:
|
||||||
- param
|
- param
|
||||||
- param2
|
- param2
|
||||||
|
type: object
|
||||||
uploadFileWithRequiredFile_request:
|
uploadFileWithRequiredFile_request:
|
||||||
properties:
|
properties:
|
||||||
additionalMetadata:
|
additionalMetadata:
|
||||||
@ -2227,6 +2232,7 @@ components:
|
|||||||
type: string
|
type: string
|
||||||
required:
|
required:
|
||||||
- requiredFile
|
- requiredFile
|
||||||
|
type: object
|
||||||
Dog_allOf:
|
Dog_allOf:
|
||||||
properties:
|
properties:
|
||||||
breed:
|
breed:
|
||||||
|
@ -2105,6 +2105,7 @@ components:
|
|||||||
status:
|
status:
|
||||||
description: Updated status of the pet
|
description: Updated status of the pet
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
uploadFile_request:
|
uploadFile_request:
|
||||||
properties:
|
properties:
|
||||||
additionalMetadata:
|
additionalMetadata:
|
||||||
@ -2114,6 +2115,7 @@ components:
|
|||||||
description: file to upload
|
description: file to upload
|
||||||
format: binary
|
format: binary
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
testEnumParameters_request:
|
testEnumParameters_request:
|
||||||
properties:
|
properties:
|
||||||
enum_form_string_array:
|
enum_form_string_array:
|
||||||
@ -2133,6 +2135,7 @@ components:
|
|||||||
- -efg
|
- -efg
|
||||||
- (xyz)
|
- (xyz)
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
testEndpointParameters_request:
|
testEndpointParameters_request:
|
||||||
properties:
|
properties:
|
||||||
integer:
|
integer:
|
||||||
@ -2205,6 +2208,7 @@ components:
|
|||||||
- double
|
- double
|
||||||
- number
|
- number
|
||||||
- pattern_without_delimiter
|
- pattern_without_delimiter
|
||||||
|
type: object
|
||||||
testJsonFormData_request:
|
testJsonFormData_request:
|
||||||
properties:
|
properties:
|
||||||
param:
|
param:
|
||||||
@ -2216,6 +2220,7 @@ components:
|
|||||||
required:
|
required:
|
||||||
- param
|
- param
|
||||||
- param2
|
- param2
|
||||||
|
type: object
|
||||||
uploadFileWithRequiredFile_request:
|
uploadFileWithRequiredFile_request:
|
||||||
properties:
|
properties:
|
||||||
additionalMetadata:
|
additionalMetadata:
|
||||||
@ -2227,6 +2232,7 @@ components:
|
|||||||
type: string
|
type: string
|
||||||
required:
|
required:
|
||||||
- requiredFile
|
- requiredFile
|
||||||
|
type: object
|
||||||
Dog_allOf:
|
Dog_allOf:
|
||||||
properties:
|
properties:
|
||||||
breed:
|
breed:
|
||||||
|
@ -2105,6 +2105,7 @@ components:
|
|||||||
status:
|
status:
|
||||||
description: Updated status of the pet
|
description: Updated status of the pet
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
uploadFile_request:
|
uploadFile_request:
|
||||||
properties:
|
properties:
|
||||||
additionalMetadata:
|
additionalMetadata:
|
||||||
@ -2114,6 +2115,7 @@ components:
|
|||||||
description: file to upload
|
description: file to upload
|
||||||
format: binary
|
format: binary
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
testEnumParameters_request:
|
testEnumParameters_request:
|
||||||
properties:
|
properties:
|
||||||
enum_form_string_array:
|
enum_form_string_array:
|
||||||
@ -2133,6 +2135,7 @@ components:
|
|||||||
- -efg
|
- -efg
|
||||||
- (xyz)
|
- (xyz)
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
testEndpointParameters_request:
|
testEndpointParameters_request:
|
||||||
properties:
|
properties:
|
||||||
integer:
|
integer:
|
||||||
@ -2205,6 +2208,7 @@ components:
|
|||||||
- double
|
- double
|
||||||
- number
|
- number
|
||||||
- pattern_without_delimiter
|
- pattern_without_delimiter
|
||||||
|
type: object
|
||||||
testJsonFormData_request:
|
testJsonFormData_request:
|
||||||
properties:
|
properties:
|
||||||
param:
|
param:
|
||||||
@ -2216,6 +2220,7 @@ components:
|
|||||||
required:
|
required:
|
||||||
- param
|
- param
|
||||||
- param2
|
- param2
|
||||||
|
type: object
|
||||||
uploadFileWithRequiredFile_request:
|
uploadFileWithRequiredFile_request:
|
||||||
properties:
|
properties:
|
||||||
additionalMetadata:
|
additionalMetadata:
|
||||||
@ -2227,6 +2232,7 @@ components:
|
|||||||
type: string
|
type: string
|
||||||
required:
|
required:
|
||||||
- requiredFile
|
- requiredFile
|
||||||
|
type: object
|
||||||
Dog_allOf:
|
Dog_allOf:
|
||||||
properties:
|
properties:
|
||||||
breed:
|
breed:
|
||||||
|
@ -2111,6 +2111,7 @@ components:
|
|||||||
status:
|
status:
|
||||||
description: Updated status of the pet
|
description: Updated status of the pet
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
uploadFile_request:
|
uploadFile_request:
|
||||||
properties:
|
properties:
|
||||||
additionalMetadata:
|
additionalMetadata:
|
||||||
@ -2120,6 +2121,7 @@ components:
|
|||||||
description: file to upload
|
description: file to upload
|
||||||
format: binary
|
format: binary
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
testEnumParameters_request:
|
testEnumParameters_request:
|
||||||
properties:
|
properties:
|
||||||
enum_form_string_array:
|
enum_form_string_array:
|
||||||
@ -2139,6 +2141,7 @@ components:
|
|||||||
- -efg
|
- -efg
|
||||||
- (xyz)
|
- (xyz)
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
testEndpointParameters_request:
|
testEndpointParameters_request:
|
||||||
properties:
|
properties:
|
||||||
integer:
|
integer:
|
||||||
@ -2211,6 +2214,7 @@ components:
|
|||||||
- double
|
- double
|
||||||
- number
|
- number
|
||||||
- pattern_without_delimiter
|
- pattern_without_delimiter
|
||||||
|
type: object
|
||||||
testJsonFormData_request:
|
testJsonFormData_request:
|
||||||
properties:
|
properties:
|
||||||
param:
|
param:
|
||||||
@ -2222,6 +2226,7 @@ components:
|
|||||||
required:
|
required:
|
||||||
- param
|
- param
|
||||||
- param2
|
- param2
|
||||||
|
type: object
|
||||||
uploadFileWithRequiredFile_request:
|
uploadFileWithRequiredFile_request:
|
||||||
properties:
|
properties:
|
||||||
additionalMetadata:
|
additionalMetadata:
|
||||||
@ -2233,6 +2238,7 @@ components:
|
|||||||
type: string
|
type: string
|
||||||
required:
|
required:
|
||||||
- requiredFile
|
- requiredFile
|
||||||
|
type: object
|
||||||
Dog_allOf:
|
Dog_allOf:
|
||||||
properties:
|
properties:
|
||||||
breed:
|
breed:
|
||||||
|
@ -2111,6 +2111,7 @@ components:
|
|||||||
status:
|
status:
|
||||||
description: Updated status of the pet
|
description: Updated status of the pet
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
uploadFile_request:
|
uploadFile_request:
|
||||||
properties:
|
properties:
|
||||||
additionalMetadata:
|
additionalMetadata:
|
||||||
@ -2120,6 +2121,7 @@ components:
|
|||||||
description: file to upload
|
description: file to upload
|
||||||
format: binary
|
format: binary
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
testEnumParameters_request:
|
testEnumParameters_request:
|
||||||
properties:
|
properties:
|
||||||
enum_form_string_array:
|
enum_form_string_array:
|
||||||
@ -2139,6 +2141,7 @@ components:
|
|||||||
- -efg
|
- -efg
|
||||||
- (xyz)
|
- (xyz)
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
testEndpointParameters_request:
|
testEndpointParameters_request:
|
||||||
properties:
|
properties:
|
||||||
integer:
|
integer:
|
||||||
@ -2211,6 +2214,7 @@ components:
|
|||||||
- double
|
- double
|
||||||
- number
|
- number
|
||||||
- pattern_without_delimiter
|
- pattern_without_delimiter
|
||||||
|
type: object
|
||||||
testJsonFormData_request:
|
testJsonFormData_request:
|
||||||
properties:
|
properties:
|
||||||
param:
|
param:
|
||||||
@ -2222,6 +2226,7 @@ components:
|
|||||||
required:
|
required:
|
||||||
- param
|
- param
|
||||||
- param2
|
- param2
|
||||||
|
type: object
|
||||||
uploadFileWithRequiredFile_request:
|
uploadFileWithRequiredFile_request:
|
||||||
properties:
|
properties:
|
||||||
additionalMetadata:
|
additionalMetadata:
|
||||||
@ -2233,6 +2238,7 @@ components:
|
|||||||
type: string
|
type: string
|
||||||
required:
|
required:
|
||||||
- requiredFile
|
- requiredFile
|
||||||
|
type: object
|
||||||
Dog_allOf:
|
Dog_allOf:
|
||||||
properties:
|
properties:
|
||||||
breed:
|
breed:
|
||||||
|
@ -2111,6 +2111,7 @@ components:
|
|||||||
status:
|
status:
|
||||||
description: Updated status of the pet
|
description: Updated status of the pet
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
uploadFile_request:
|
uploadFile_request:
|
||||||
properties:
|
properties:
|
||||||
additionalMetadata:
|
additionalMetadata:
|
||||||
@ -2120,6 +2121,7 @@ components:
|
|||||||
description: file to upload
|
description: file to upload
|
||||||
format: binary
|
format: binary
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
testEnumParameters_request:
|
testEnumParameters_request:
|
||||||
properties:
|
properties:
|
||||||
enum_form_string_array:
|
enum_form_string_array:
|
||||||
@ -2139,6 +2141,7 @@ components:
|
|||||||
- -efg
|
- -efg
|
||||||
- (xyz)
|
- (xyz)
|
||||||
type: string
|
type: string
|
||||||
|
type: object
|
||||||
testEndpointParameters_request:
|
testEndpointParameters_request:
|
||||||
properties:
|
properties:
|
||||||
integer:
|
integer:
|
||||||
@ -2211,6 +2214,7 @@ components:
|
|||||||
- double
|
- double
|
||||||
- number
|
- number
|
||||||
- pattern_without_delimiter
|
- pattern_without_delimiter
|
||||||
|
type: object
|
||||||
testJsonFormData_request:
|
testJsonFormData_request:
|
||||||
properties:
|
properties:
|
||||||
param:
|
param:
|
||||||
@ -2222,6 +2226,7 @@ components:
|
|||||||
required:
|
required:
|
||||||
- param
|
- param
|
||||||
- param2
|
- param2
|
||||||
|
type: object
|
||||||
uploadFileWithRequiredFile_request:
|
uploadFileWithRequiredFile_request:
|
||||||
properties:
|
properties:
|
||||||
additionalMetadata:
|
additionalMetadata:
|
||||||
@ -2233,6 +2238,7 @@ components:
|
|||||||
type: string
|
type: string
|
||||||
required:
|
required:
|
||||||
- requiredFile
|
- requiredFile
|
||||||
|
type: object
|
||||||
Dog_allOf:
|
Dog_allOf:
|
||||||
properties:
|
properties:
|
||||||
breed:
|
breed:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user