Schemas
location
longitude/latitude or city name or zipcode
- [ "object", "string", "integer" ]Example:
{"longitude":0,"latitude":0}
person
- objectExample:
{"id":123,"name":null,"age":0,"photoUrls":"string","hobby":"string","location":[{"longitude":0,"latitude":0}],"tag":{"tagId":"string","tagDefinition":{"tagText":"string","tagColor":"string"}}}
Properties:id
[ "string", "integer" ]RequiredPerson IDExample:123
Minimum string length:4
name
[ "null", "string" ]Name of the personExample:null
Minimum string length:4
age
[ "integer", "number" ]Age of PersonExample:0
photoUrls
[ "string", "array" ]RequiredOne or more URL'sExample:"string"
>= 10
Maximum number of items:20
hobby
[ "string", "array" ]comma separated list of hobbies or an array of objectExample:"string"
location
[ "array", "integer" ]Example:[{"longitude":0,"latitude":0}]
>= 10
Maximum number of items:1
tag
[ "object", "string" ]Example:{"tagId":"string","tagDefinition":{"tagText":"string","tagColor":"string"}}