{
	"$schema":"http://json-schema.org/draft-04/schema#",
	"title":"ADMUpdateStart",
	"type":"object",
	"additionalProperties":false,
	"description":"Analytics-v3 .. ADM Update Start",
	"properties":{
    "log_context": {
        "$ref": "/resources/schema/analytics/client/v3/LogContext.json",
        "description": "Required Log Context Reference"
    },
    "event_name": {
        "type": "string",
        "enum": [
          "ADM_UPDATE_START"
        ]
    },
    "schema_definition": {
        "type": "string",
        "enum": [
          "ADMUpdateStart"
        ]
    },
    "device_id":{
        "type": "string",
        "description": "Unique id of the device from which request is sent for update"
    },
    "area_type": {
      "$ref": "/resources/schema/analytics/client/v3/type/ADMAreaType.json",
      "description": "Type of area to be updated."
    },
    "request_time":{
        "type": "integer",
        "description": "Timestamp of the request (in milliseconds)"
    }
	},
	"required":[
        "log_context",
        "event_name",
        "schema_definition",
        "device_id",
        "area_type",
        "request_time"
	]
}