{
	"$schema":"http://json-schema.org/draft-04/schema#",
	"additionalProperties":false,
	"description":"Version v1",
	"properties":{
		"alert_id":{
			"type":"string"
		},
		"alert_type":{
			"$ref":"/resources/schema/alert/v1/AlertType.json"
		},
		"enabled":{
			"type":"boolean"
		},
		"hour":{
			"$ref":"/resources/schema/common/v1/HoursInDay.json"
		},
		"minute":{
			"$ref":"/resources/schema/common/v1/MinutesInHour.json"
		},
		"second":{
			"$ref":"/resources/schema/common/v1/SecondsInMinute.json"
		},
		"local_timezone":{
			"$ref":"/resources/schema/common/v1/TimeZone.json"
		},
		"start_time":{
			"type":"string"
		},
		"end_time":{
			"type":"string"
		},
		"days_of_week":{
			"type":"array",
			"items":{
				"$ref":"/resources/schema/common/v1/DaysOfWeek.json"
			}
		},
		"channel":{
			"$ref":"/resources/schema/alert/v1/Channel.json"
		}
	},
	"required":[
		"alert_type",
		"enabled",
		"hour",
		"minute",
		"second",
		"local_timezone",
		"days_of_week",
		"channel"
	],
	"title":"Alert",
	"type":"object"
}