{
	"$schema":"http://json-schema.org/draft-04/schema#",
	"title":"ADMReset",
	"type":"object",
	"additionalProperties":false,
	"description":"Analytics-v4 .. ADM Reset",
	"properties":{
    "log_context": {
        "$ref": "/resources/schema/analytics/client/v4/LogContext.json",
        "description": "Required Log Context Reference"
    },
    "event_name": {
        "type": "string",
        "enum": [
          "ADM_RESET"
        ]
    },
    "schema_definition": {
        "type": "string",
        "enum": [
          "ADMReset"
        ]
    },
    "device_id":{
        "type": "string",
        "description": "Unique id of the device from which request is sent for reset"
    },
    "area_type": {
      "$ref": "/resources/schema/analytics/client/v4/type/ADMAreaType.json",
      "description": "Type of area to be reset."
    },
    "time_cost": {
        "type": "integer",
        "description": "Total time taken for reset (in milliseconds)"

    },
    "status": {
        "type": "string",
        "enum": [
          "SUCCESSFUL",
          "CANCELLED",
          "FAILED"
        ],
        "description": "Status of API call"
    },
    "error_id": {
        "type": "string",
        "description": "Unique id that links to the error thrown"
    }
	},
	"required":[
      "log_context",
      "event_name",
      "schema_definition",
      "device_id",
      "area_type",
      "status",
      "time_cost"
	]
}