{
	"$schema":"http://json-schema.org/draft-04/schema#",
	"title":"SubscriptionStatus",
	"type":"object",
	"additionalProperties":false,
	"description":"Analytics-v3 .. Subscription Status object",
	"properties":{
		"log_context":{
			"$ref":"/resources/schema/analytics/client/v3/LogContext.json",
			"description":"Required Log Context Reference"
		},
		"event_name":{
			"type": "string",
			"enum": ["SUBSCRIPTION_STATUS"]		
		},
		"schema_definition":{
			"type": "string",
			"enum": ["SubscriptionStatus"]
		},
		"status":{
			"type": "string",
			"enum": ["ACTIVE", "INACTIVE"],
			"description":"Whether subscription is active for user"
		},
		"features": {
			"type": "array",
			"items": {
				"type": "string"
			},
			"description": "List of Applicable features,e.g.[INFO_NAV_CONNECTIVITY,INFO_NAV_MAP_UPDATE,INFO_NAV_SELF_LEARNING,INFO_NAV_TRAFFIC,BLUE_ZONE,INRIX,CONNECTED_NAVIGATION]"
		}
	},
	"required":[
		"log_context",
		"event_name",
		"schema_definition",
		"status"
	]
}