Input your API call details here

{
numbersMock
:
{
smallInt
:
-20
bigInt
:
2147483647
unsafeInt
:
10000000000000000
notInt
:
12.2
stringsMock
:
{
stringTest
:
Hello World
isoDate
:
1999-12-31
isoDateTime
:
1999-12-31T23:59:59Z
objectsMock
:
{
child
:
{
child
:
true
childList
:
[
1 item  
0
:
{
child
:
true
childMatrix
:
[
1 item  
0
:
[
1 item  
0
:
{
child
:
true
mixedObjectsArray
:
[
5 items  
0
:
[
3 items  
0
:
1
1
:
2
2
:
{
test
:
true
1
:
{
child
:
true
2
:
{
son
:
true
3
:
{
son
:
true
4
:
{
offspring
:
true
nullable
:
null
listMock
:
[
5 items  
0
:
1
1
:
2
2
:
3
3
:
4
4
:
5
matrixMock
:
[
2 items  
0
:
[
2 items  
0
:
1
1
:
2
1
:
[
2 items  
0
:
3
1
:
4
mixedArrayMock
:
[
5 items  
0
:
1
1
:
two
2
:
3
3
:
four
4
:
5
mixedMatrixMock
:
[
2 items  
0
:
[
2 items  
0
:
1
1
:
two
1
:
[
2 items  
0
:
3
1
:
four

And here is that JSON Response formatted as a YAML OpenAPI Specification

YAML
	"":
	  get:
	    tags:
	      - things
	    summary: ""
	    description: ""
	    operationId: ""
	    responses:
	      "200":
	        content:
	          application/json:
	            schema:
	              type: object
	              properties:
	                numbersMock:
	                  type: object
	                  properties:
	                    smallInt:
	                      type: integer
	                      format: int32
	                      examples:
	                        - -20
	                    bigInt:
	                      type: integer
	                      format: int64
	                      examples:
	                        - 2147483647
	                    unsafeInt:
	                      type: integer
	                      format: unsafe
	                      examples:
	                        - 10000000000000000
	                    notInt:
	                      type: number
	                      examples:
	                        - 12.2
	                stringsMock:
	                  type: object
	                  properties:
	                    stringTest:
	                      type: string
	                      examples:
	                        - Hello World
	                    isoDate:
	                      type: string
	                      format: date
	                      examples:
	                        - 1999-12-31
	                    isoDateTime:
	                      type: string
	                      format: date-time
	                      examples:
	                        - 1999-12-31T23:59:59Z
	                objectsMock:
	                  type: object
	                  properties:
	                    child:
	                      type: object
	                      properties:
	                        child:
	                          type: boolean
	                          examples:
	                            - true
	                    childList:
	                      type: array
	                      items:
	                        type: object
	                        properties:
	                          child:
	                            type: boolean
	                            examples:
	                              - true
	                    childMatrix:
	                      type: array
	                      items:
	                        type: array
	                        items:
	                          type: object
	                          properties:
	                            child:
	                              type: boolean
	                              examples:
	                                - true
	                    mixedObjectsArray:
	                      type: array
	                      items:
	                        type: object
	                        properties:
	                          child:
	                            type: boolean
	                            examples:
	                              - true
	                          son:
	                            type: boolean
	                            examples:
	                              - true
	                          offspring:
	                            type: boolean
	                            examples:
	                              - true
	                    nullable:
	                      type:
	                        - "null"
	                listMock:
	                  type: array
	                  items:
	                    type: integer
	                    format: int32
	                    examples:
	                      - 1
	                matrixMock:
	                  type: array
	                  items:
	                    type: array
	                    items:
	                      type: integer
	                      format: int32
	                      examples:
	                        - 1
	                mixedArrayMock:
	                  type: array
	                  items:
	                    type: integer
	                    format: int32
	                    examples:
	                      - 1
	                mixedMatrixMock:
	                  type: array
	                  items:
	                    type: array
	                    items:
	                      type: integer
	                      format: int32
	                      examples:
	                        - 1