Input your API call details here

loading...

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:
	                        - value: -20
	                    bigInt:
	                      type: integer
	                      format: int64
	                      examples:
	                        - value: 2147483647
	                    unsafeInt:
	                      type: integer
	                      format: unsafe
	                      examples:
	                        - value: 10000000000000000
	                    notInt:
	                      type: number
	                      examples:
	                        - value: 12.2
	                stringsMock:
	                  type: object
	                  properties:
	                    stringTest:
	                      type: string
	                      examples:
	                        - value: Hello World
	                    isoDate:
	                      type: string
	                      format: date
	                      examples:
	                        - value: 1999-12-31
	                    isoDateTime:
	                      type: string
	                      format: date-time
	                      examples:
	                        - value: 1999-12-31T23:59:59Z
	                objectsMock:
	                  type: object
	                  properties:
	                    child:
	                      type: object
	                      properties:
	                        child:
	                          type: boolean
	                          examples:
	                            - value: true
	                    childList:
	                      type: array
	                      items:
	                        type: object
	                        properties:
	                          child:
	                            type: boolean
	                            examples:
	                              - value: true
	                    childMatrix:
	                      type: array
	                      items:
	                        type: array
	                        items:
	                          type: object
	                          properties:
	                            child:
	                              type: boolean
	                              examples:
	                                - value: true
	                    mixedObjectsArray:
	                      type: array
	                      items:
	                        type: object
	                        properties:
	                          child:
	                            type: boolean
	                            examples:
	                              - value: true
	                          son:
	                            type: boolean
	                            examples:
	                              - value: true
	                          offspring:
	                            type: boolean
	                            examples:
	                              - value: true
	                    nullable:
	                      type:
	                        - "null"
	                listMock:
	                  type: array
	                  items:
	                    type: integer
	                    format: int32
	                    examples:
	                      - value: 1
	                matrixMock:
	                  type: array
	                  items:
	                    type: array
	                    items:
	                      type: integer
	                      format: int32
	                      examples:
	                        - value: 1
	                mixedArrayMock:
	                  type: array
	                  items:
	                    type: integer
	                    format: int32
	                    examples:
	                      - value: 1