{
	"$schema" : "http://json-schema.org/draft-04/schema#",
	"additionalProperties" : false,
	"description" : "v1 of user dimension objects",
	"properties" : {
		"marker_id" : {
			"type" : "string",
			"description" : "ID of the marker"
		},

		"is_deleted" : {
			"type" : "boolean",
			"description" : "Tells if the marker is deleted or not.  Deleted marker, if found in items, can safely be assumed to be 'removed' from item"
		},

		"label" : {
			"type" : "string",
			"description" : "Display label of the marker"
		},

		"modified_utc_timestamp" : {
			"type" : "integer",
			"description" : "UTC timestamp of last modified time"
		},

		"scope" : {
			"$ref" : "/resources/schema/data/user/dimension/v1/UserMarkerScope.json",
			"description" : "Defines if the marker is private or global.  Consider it PRIVATE, if scope is not available at all."
		},

		"description" : {
			"type" : "string",
			"description" : "Description or details of marker"
		},

		"type" : {
			"type" : "string",
			"description" : "Type of Marker"
		}
	},

	"required" : 
	[
		"marker_id",
		"type",
		"label",
		"modified_utc_timestamp"
	],

	"title" : "UserMarker",
	"type" : "object"
}