{
	"name" : "demo.inventory.Product",
	"canCreate" : false,
	"canDelete" : false,
	"canUpdate" : false,
	"canQuery" : true,
	"canSearch" : true,
	"fields" : [
		{
			"name" : "serialNumber",
			"isKey" : true,
			"type" : "String"
		},
		{
			"name" : "name",
			"required" : true,
			"type" : "String"
		},
		{
			"name" : "category",
			"type" : "jello.Reference(demo.inventory.Category)"
		},
		{
			"name" : "photo",
			"jello.ux.Hint" : "Image for illustration purposes only",
			"type" : "jello.Attachment(image/*)"
		},
		{
			"name" : "price",
			"jello.ux.Validation" : {
				"min" : 0,
				"max" : 1000
			},
			"required" : true,
			"type" : "Double"
		},
		{
			"name" : "rating",
			"jello.ux.Control" : {
				"settings" : ["width:150px"],
				"src" : "/demo/custom/ratingControl"
			},
			"type" : "Integer"
		}
	],
	"actions" : [
	]
}

