{
	"$schema":"http://json-schema.org/draft-04/schema#",
	"additionalProperties":false,
	"description":"Version 7",
	"properties":{
		"application_id":{
			"type":"string"
		},
		"receipt_id":{
			"type":"string"
		},
		"transaction_id":{
			"type":"string"
		},
		"offer_code":{
			"type":"string"
		},
		"offer_version":{
			"type":"string"
		},
		"sku":{
			"type":"string"
		},
		"purchase_utc_timestamp":{
			"type":"integer"
		},
		"offer_expiry_utc_timestamp":{
			"type":"integer"
		},
		"receipt_archivable":{
			"type":"boolean"
		},
		"description":{
			"type":"string"
		},
		"payment_processor":{
			"$ref":"/resources/schema/user/v7/PaymentProcessor.json"
		},
		"receipt_data":{
			"type":"string"
		},
		"additional_info":{
			"type":"object"
		}
	},
	"required":[
		"application_id",
		"offer_code",
		"offer_version",
		"purchase_utc_timestamp",
		"offer_expiry_utc_timestamp",
		"receipt_archivable",
		"payment_processor",
		"sku"
	],
	"title":"TelenavReceipt",
	"type":"object"
}