Schemas
person
- objectExample:
{"id":10,"name":"string","gender":"male","location":"string","age":21,"photoUrls":["string"],"hobby":"string"}Properties:id[ "integer", "number", "string" ]RequiredPerson IDExample:10>= 10Minimum string length:4namestringExample:"string"Maximum number of items:100gender[ "string", "integer" ]Example:"male">= 4Enum:malefemaleunknownlocationstring or nulllocation can be null, set using `nullable` property thats supported by OpenAPI `3.0.x`Example:"string"ageintegerAge of PersonExample:21multiple of:5>= 21photoUrls[ "array", "boolean", "string" ]One URL or Array or URLs or set to falseExample:["string"]Maximum number of items:20hobby[ "string", "array" ]comma separated list of hobbies or an array of objectExample:"string"