{
	"$schema" : "http://json-schema.org/draft-04/schema#",
	"additionalProperties" : false,
	"description" : "v1 of device info",
	"properties" : {
		"os_name" : {
			"type" : "string",
			"description" : "Name of the OS running on the device e.g. iOS"
		},

		"os_version" : {
			"type" : "string",
			"description" : "OS version running on device e.g. 7.1"
		},

		"make" : {
			"type" : "string",
			"description" : "Make of the device e.g. Apple"
		},

		"model" : {
			"type" : "string",
			"description" : "Model of the device e.g. iPhone"
		}
	},

	"required" : 
	[
		"os_name",
		"os_version"
	],

	"title" : "DeviceInfo",
	"type" : "object"
}