{
	"$schema":"http://json-schema.org/draft-04/schema#",
	"additionalProperties":false,
	"description":"Version 6",
	"properties":{
		"application_id":{
			"type":"string"
		},
		"receipt_archivable":{
			"type":"boolean"
		},
		"premium_features":{
			"type": "array",
			"items": {
				"type":"string"
			}			
		},
		"name":{
			"type":"string"
		},
		"level":{
			"type":"integer"
		},
		"offer_code":{
			"type":"string"
		},
		"offer_version":{
			"type":"string"
		},
		"pay_period":{
			"$ref":"/resources/schema/user/v6/TimeUnit.json"
		},
		"grace_period":{
			"$ref":"/resources/schema/user/v6/TimeUnit.json"
		},
		"expiry_time":{
			"type":"integer"
		},
		"sku":{
			"type":"string"
		},
		"price":{
			"type":"object"
		},
		"payment_processor":{
			"$ref":"/resources/schema/user/v6/PaymentProcessor.json"
		},
		"payment_type":{
			"type":"string"
		},
		"paymentGateway":{
			"type": "array",
			"items": {
				"type":"string"
			}
		},
		"force_verfiy": {
                        "type": "boolean"
                },
		"description":{
			"type":"string"
		},
		"additional_info":{
			"type":"object"
		}
	},
	"required":[
		"application_id",
		"name",
		"level",
		"offer_code",
		"offer_version",
		"pay_period",
		"expiry_time",
		"receipt_archivable",
		"payment_processor",
		"sku"
	],
	"title":"OfferDetail",
	"type":"object"
}
