Input your API call details here
loading...
And here is that JSON Response formatted as a YAML OpenAPI Specification
"":
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