Schemas

location

longitude/latitude or city name or zipcode
  • [ "object", "string", "integer" ]
    Example: {"longitude":0,"latitude":0}

person

  • object
    Example: {"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" ]
      Required
      Person ID
      Example: 123
      Minimum string length: 4
    • name
      [ "null", "string" ]
      Name of the person
      Example: null
      Minimum string length: 4
    • age
      [ "integer", "number" ]
      Age of Person
      Example: 0
    • photoUrls
      [ "string", "array" ]
      Required
      One or more URL's
      Example: "string"
      >= 10
      Maximum number of items: 20
    • hobby
      [ "string", "array" ]
      comma separated list of hobbies or an array of object
      Example: "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"}}