{
	"$schema":"http://json-schema.org/draft-04/schema#",
	"title":"ADMError",
	"type":"object",
	"additionalProperties":false,
	"description":"Analytics-v3 .. ADM Error",
	"properties":{
    "log_context": {
        "$ref": "/resources/schema/analytics/client/v3/LogContext.json",
        "description": "Required Log Context Reference"
    },
    "event_name": {
        "type": "string",
        "enum": [
          "ADM_ERROR"
        ]
    },
    "schema_definition": {
        "type": "string",
        "enum": [
          "ADMError"
        ]
    },
    "device_id":{
        "type": "string",
        "description": "Unique id of the device from which request is sent for update"
    },
    "error_time":{
      "type": "integer",
      "description": "Timestamp at which error occurred (in milliseconds)"
    },
    "error_id": {
        "type": "string",
        "description": "Type of error that occurred during the update"
    }
	},
	"required":[
      "log_context",
      "event_name",
      "schema_definition",
      "device_id",
      "error_time",
      "error_id"
	]
}