{
	"$schema":"http://json-schema.org/draft-04/schema#",
	"type":"object",
	"title":"ReadNotificationResponse",
	"additionalProperties":false,
	"description":"Notification Service V2 - Read Notifications Interface Request",
	"properties":{
		"status":{
			"$ref":"/resources/schema/services/v1/ServiceStatus.json",
			"description":"Service/endpoint response status"
		},
		"notifications":{
			"type":"array",
			"items":{
				"$ref":"/resources/schema/notification/v2/Notification.json",
				"description":"Each element of the array will be an instance of Notification"
			},
			"description":"List of notifications requested/available"
		}
		
	},
	"required":[
		"status"
	]
}