{
	"$schema":"http://json-schema.org/draft-04/schema#",
	"additionalProperties":false,
	"description":"Version v2",
	"properties":{
		"type":{
			"$ref":"/resources/schema/alert/v2/ChannelType.json"
		},
		"subject":{
			"type":"string"
		},
		"message_body":{
			"type":"string"
		},
		"recipients_list":{
			"type":"array",
			"items":{
				"type":"string"
			}
		}, 
		"notification_type":{
			"type":"string"
		}
	},
	"required":[
		"message_body",
		"type",
		"recipients_list",
		"notification_type"
	],
	"title":"Channel",
	"type":"object"
}