{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "title": "ProfileLocation",
  "type": "object",
  "description": "Version v1 - ProfileLocation",
  "additionalProperties": true,
  "properties": {
    "location": {
      "$ref": "/resources/schema/adm/v1/LatLon.json",
      "description": "Coordinates of the profile location."
    },
    "type": {
      "type": "string",
      "enum": [
        "SYSTEM",
        "CUSTOM"
      ],
      "description": "SYSTEM, CUSTOM"
    },
    "label": {
      "type": "string",
      "description": "If type=SYSTEM, supported values are:</br></br>\"1.HOME\"</br>\"2.WORK\"</br>\"3.FIRST_TIME\"</br>If type=CUSTOM,  label is free-text."
    },
    "created_time": {
      "type": "integer",
      "description": "Profile location created time in epoch (UTC timestamp in ms)."
    },
    "entity": {
      "$ref": "/resources/schema/adm/v1/ProfileEntity.json",
      "description": "Entity associated with the location."
    }
  },
  "required": [
    "location",
    "type",
    "label",
    "created_time"
  ]
}