William Cheng df05e6f4bc
Update parser to 2.0.29 (#11388)
* update parser to 2.0.29

* better handling of null in dereferencing

* update parser to 2.0.30

* update core to newer version

* add new files

* rollback to previous stable version

* remove files

* Fixes for python-experimental NullableShape component

Co-authored-by: Justin Black <justin.a.black@gmail.com>
2022-02-21 18:37:52 +08:00

54 lines
1.2 KiB
YAML

openapi: 3.0.0
info:
description: byte Array error in equal method
title: 'Minimal Example '
version: v1
servers:
- url: /
paths:
/nullable-array-test:
get:
description: ""
operationId: ""
parameters: []
responses:
"200":
content:
application/json:
schema:
items:
$ref: '#/components/schemas/ByteArrayObject'
type: array
description: ""
summary: ""
x-accepts: application/json
components:
schemas:
ByteArrayObject:
example:
nullableArray: nullableArray
nullableString: nullableString
normalArray: normalArray
stringField: stringField
intField: 0.8008281904610115
properties:
nullableArray:
description: byte array.
format: byte
nullable: true
type: string
normalArray:
description: byte array.
format: byte
type: string
nullableString:
nullable: true
type: string
stringField:
type: string
intField:
format: int32
type: number
type: object