chore: update demo bundle for v2.0.0-rc.71

This commit is contained in:
Alex Varchuk 2022-05-31 16:45:37 +03:00
parent dc679203da
commit 477ee01e43
3 changed files with 370 additions and 295 deletions

View File

@ -1242,6 +1242,26 @@ components:
type: string type: string
contentEncoding: base64 contentEncoding: base64
contentMediaType: image/png contentMediaType: image/png
addresses:
type: array
minItems: 0
maxLength: 10
prefixItems:
- type: object
properties:
city:
type: string
minLength: 0
country:
type: string
minLength: 0
street:
description: includes build/apartment number
type: string
minLength: 0
- type: number
items:
type: string
if: if:
title: userStatus === 10 title: userStatus === 10
properties: properties:

View File

@ -401,6 +401,7 @@ paths:
application/json: application/json:
schema: schema:
type: object type: object
minProperties: 2
additionalProperties: additionalProperties:
type: integer type: integer
format: int32 format: int32
@ -877,11 +878,11 @@ paths:
type: string type: string
examples: examples:
response: response:
value: <Message> OK </Message> value: <Message> OK </Message>
text/plain: text/plain:
examples: examples:
response: response:
value: OK value: OK
'400': '400':
description: Invalid username/password supplied description: Invalid username/password supplied
/user/logout: /user/logout:
@ -1134,6 +1135,26 @@ components:
description: User status description: User status
type: integer type: integer
format: int32 format: int32
addresses:
type: array
minItems: 0
maxLength: 10
items:
- type: object
properties:
city:
type: string
minLength: 0
country:
type: string
minLength: 0
street:
description: includes build/apartment number
type: string
minLength: 0
- type: number
additionalItems:
type: string
xml: xml:
name: User name: User
requestBodies: requestBodies:

File diff suppressed because one or more lines are too long