From 05504f73aa297c5e327acb27c907ba48c2e8e1ba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pascal=20Honor=C3=A9?= Date: Sat, 21 Sep 2024 14:16:17 +0100 Subject: [PATCH 1/2] Decommission SupporterPlus2023V1V2 --- .../handlers/AmendmentHandler.scala | 13 +- .../handlers/EstimationHandler.scala | 14 +- .../handlers/NotificationHandler.scala | 20 +- .../SalesforcePriceRiseCreationHandler.scala | 1 - .../SupporterPlus2023V1V2Migration.scala | 347 --------- .../model/AmendmentData.scala | 9 - .../model/MigrationType.scala | 2 - .../util/StartDates.scala | 3 - .../handlers/AmendmentHandlerTest.scala | 569 -------------- .../handlers/EstimationHandlerTest.scala | 174 +---- .../model/AmendmentDataTest.scala | 702 ------------------ 11 files changed, 7 insertions(+), 1847 deletions(-) delete mode 100644 lambda/src/main/scala/pricemigrationengine/migrations/SupporterPlus2023V1V2Migration.scala diff --git a/lambda/src/main/scala/pricemigrationengine/handlers/AmendmentHandler.scala b/lambda/src/main/scala/pricemigrationengine/handlers/AmendmentHandler.scala index 08ecc5d4..8d8645f9 100644 --- a/lambda/src/main/scala/pricemigrationengine/handlers/AmendmentHandler.scala +++ b/lambda/src/main/scala/pricemigrationengine/handlers/AmendmentHandler.scala @@ -86,12 +86,11 @@ object AmendmentHandler extends CohortHandler { } private def shouldPerformFinalPriceCheck(cohortSpec: CohortSpec): Boolean = { - // We do not apply the check to the SupporterPlus2023V1V2 migration, nor the SupporterPlus2024 + // We do not apply the check to the SupporterPlus2024 // migration where, due to the way the prices are computed, the new price can be higher than the // estimated price (which wasn't including the extra contribution). MigrationType(cohortSpec) match { - case SupporterPlus2023V1V2MA => false case Membership2023Monthlies => true case Membership2023Annuals => true case DigiSubs2023 => true @@ -148,16 +147,6 @@ object AmendmentHandler extends CohortHandler { startDate ) ) - case SupporterPlus2023V1V2MA => - ZIO.fromEither( - SupporterPlus2023V1V2Migration - .zuoraUpdate( - item, - subscriptionBeforeUpdate, - invoicePreviewBeforeUpdate, - startDate - ) - ) case DigiSubs2023 => ZIO.fromEither( DigiSubs2023Migration.zuoraUpdate( diff --git a/lambda/src/main/scala/pricemigrationengine/handlers/EstimationHandler.scala b/lambda/src/main/scala/pricemigrationengine/handlers/EstimationHandler.scala index 9d7b4288..d9dc8bef 100644 --- a/lambda/src/main/scala/pricemigrationengine/handlers/EstimationHandler.scala +++ b/lambda/src/main/scala/pricemigrationengine/handlers/EstimationHandler.scala @@ -87,17 +87,9 @@ object EstimationHandler extends CohortHandler { case e => ZIO.fail(e) }, success = { result => - val cohortItemToWrite = MigrationType(cohortSpec) match { - case SupporterPlus2023V1V2MA => { - // SupporterPlus2023V1V2 is different here, because it's a rate plan migration and not a price increase - // The first of its kind. In particular we do not want processing stage `NoPriceIncrease` - CohortItem.fromSuccessfulEstimationResult(result) - } - case _ => { - if (result.estimatedNewPrice <= result.oldPrice) CohortItem.fromNoPriceIncreaseEstimationResult(result) - else CohortItem.fromSuccessfulEstimationResult(result) - } - } + val cohortItemToWrite = + if (result.estimatedNewPrice <= result.oldPrice) CohortItem.fromNoPriceIncreaseEstimationResult(result) + else CohortItem.fromSuccessfulEstimationResult(result) for { cohortItem <- cohortItemToWrite diff --git a/lambda/src/main/scala/pricemigrationengine/handlers/NotificationHandler.scala b/lambda/src/main/scala/pricemigrationengine/handlers/NotificationHandler.scala index aa9358a0..d52c0032 100644 --- a/lambda/src/main/scala/pricemigrationengine/handlers/NotificationHandler.scala +++ b/lambda/src/main/scala/pricemigrationengine/handlers/NotificationHandler.scala @@ -133,7 +133,7 @@ object NotificationHandler extends CohortHandler { contact <- SalesforceClient.getContact(sfSubscription.Buyer__c) firstName <- ZIO.fromEither(firstName(contact)) lastName <- ZIO.fromEither(requiredField(contact.LastName, "Contact.LastName")) - address <- ZIO.fromEither(address(cohortSpec, contact)) + address <- ZIO.fromEither(targetAddress(cohortSpec, contact)) street <- ZIO.fromEither(street(cohortSpec, address: SalesforceAddress)) postalCode = address.postalCode.getOrElse("") country <- ZIO.fromEither(country(cohortSpec, address)) @@ -149,7 +149,6 @@ object NotificationHandler extends CohortHandler { case Legacy => s"${currencySymbol}${PriceCap.priceCapLegacy(oldPrice, estimatedNewPrice)}" case Membership2023Monthlies => s"${currencySymbol}${estimatedNewPrice}" case Membership2023Annuals => s"${currencySymbol}${estimatedNewPrice}" - case SupporterPlus2023V1V2MA => s"${currencySymbol}${estimatedNewPrice}" case DigiSubs2023 => s"${currencySymbol}${estimatedNewPrice}" case Newspaper2024 => s"${currencySymbol}${estimatedNewPrice}" case GW2024 => @@ -295,7 +294,6 @@ object NotificationHandler extends CohortHandler { MigrationType(cohortSpec) match { case Membership2023Monthlies => Membership2023Migration.maxLeadTime case Membership2023Annuals => Membership2023Migration.maxLeadTime - case SupporterPlus2023V1V2MA => SupporterPlus2023V1V2Migration.maxLeadTime case DigiSubs2023 => DigiSubs2023Migration.maxLeadTime case Newspaper2024 => newspaper2024Migration.StaticData.maxLeadTime case GW2024 => GW2024Migration.maxLeadTime @@ -308,7 +306,6 @@ object NotificationHandler extends CohortHandler { MigrationType(cohortSpec) match { case Membership2023Monthlies => Membership2023Migration.minLeadTime case Membership2023Annuals => Membership2023Migration.minLeadTime - case SupporterPlus2023V1V2MA => SupporterPlus2023V1V2Migration.minLeadTime case DigiSubs2023 => DigiSubs2023Migration.minLeadTime case Newspaper2024 => newspaper2024Migration.StaticData.minLeadTime case GW2024 => GW2024Migration.minLeadTime @@ -390,16 +387,6 @@ object NotificationHandler extends CohortHandler { .flatMap(_ => requiredField(contact.Salutation.fold(Some("Member"))(Some(_)), "Contact.Salutation")) } - def address( - cohortSpec: CohortSpec, - contact: SalesforceContact - ): Either[NotificationHandlerFailure, SalesforceAddress] = { - MigrationType(cohortSpec) match { - case SupporterPlus2023V1V2MA => Right(SalesforceAddress(None, None, None, None, None)) - case _ => targetAddress(cohortSpec, contact) - } - } - def street( cohortSpec: CohortSpec, address: SalesforceAddress @@ -409,8 +396,7 @@ object NotificationHandler extends CohortHandler { requiredField(address.street.fold(Some(""))(Some(_)), "Contact.OtherAddress.street") case Membership2023Annuals => requiredField(address.street.fold(Some(""))(Some(_)), "Contact.OtherAddress.street") - case SupporterPlus2023V1V2MA => Right("") - case _ => requiredField(address.street, "Contact.OtherAddress.street") + case _ => requiredField(address.street, "Contact.OtherAddress.street") } } @@ -427,8 +413,6 @@ object NotificationHandler extends CohortHandler { requiredField(address.country.fold(Some("United Kingdom"))(Some(_)), "Contact.OtherAddress.country") case Membership2023Annuals => requiredField(address.country.fold(Some("United Kingdom"))(Some(_)), "Contact.OtherAddress.country") - case SupporterPlus2023V1V2MA => - requiredField(address.country.fold(Some("United Kingdom"))(Some(_)), "Contact.OtherAddress.country") case Newspaper2024 => Right(address.country.getOrElse("United Kingdom")) case SupporterPlus2024 => Right(address.country.getOrElse("")) case _ => requiredField(address.country, "Contact.OtherAddress.country") diff --git a/lambda/src/main/scala/pricemigrationengine/handlers/SalesforcePriceRiseCreationHandler.scala b/lambda/src/main/scala/pricemigrationengine/handlers/SalesforcePriceRiseCreationHandler.scala index 601aa46f..40a381f8 100644 --- a/lambda/src/main/scala/pricemigrationengine/handlers/SalesforcePriceRiseCreationHandler.scala +++ b/lambda/src/main/scala/pricemigrationengine/handlers/SalesforcePriceRiseCreationHandler.scala @@ -84,7 +84,6 @@ object SalesforcePriceRiseCreationHandler extends CohortHandler { val estimatedPriceWithOptionalCapping = MigrationType(cohortSpec) match { case Membership2023Monthlies => estimatedNewPrice case Membership2023Annuals => estimatedNewPrice - case SupporterPlus2023V1V2MA => estimatedNewPrice case DigiSubs2023 => estimatedNewPrice case Newspaper2024 => estimatedNewPrice case GW2024 => PriceCap.priceCapForNotification(oldPrice, estimatedNewPrice, GW2024Migration.priceCap) diff --git a/lambda/src/main/scala/pricemigrationengine/migrations/SupporterPlus2023V1V2Migration.scala b/lambda/src/main/scala/pricemigrationengine/migrations/SupporterPlus2023V1V2Migration.scala deleted file mode 100644 index 80770734..00000000 --- a/lambda/src/main/scala/pricemigrationengine/migrations/SupporterPlus2023V1V2Migration.scala +++ /dev/null @@ -1,347 +0,0 @@ -package pricemigrationengine.model -import pricemigrationengine.model.CohortSpec -import pricemigrationengine.model.ZuoraProductCatalogue.{homeDeliveryRatePlans, productPricingMap} -import scala.math.BigDecimal.RoundingMode -import java.time.LocalDate - -object SupporterPlus2023V1V2Migration { - - val maxLeadTime = 33 - val minLeadTime = 31 - - val newPriceMapMonthlies: Map[Currency, BigDecimal] = Map( - "GBP" -> BigDecimal(10), - "AUD" -> BigDecimal(17), - "CAD" -> BigDecimal(13), - "EUR" -> BigDecimal(10), - "USD" -> BigDecimal(13), - "NZD" -> BigDecimal(17), - ) - - val newPriceMapAnnuals: Map[Currency, BigDecimal] = Map( - "GBP" -> BigDecimal(95), - "AUD" -> BigDecimal(160), - "CAD" -> BigDecimal(120), - "EUR" -> BigDecimal(95), - "USD" -> BigDecimal(120), - "NZD" -> BigDecimal(160), - ) - - def subscriptionRatePlan(subscription: ZuoraSubscription): Either[DataExtractionFailure, ZuoraRatePlan] = { - subscription.ratePlans.filter(rp => rp.productName == "Supporter Plus").headOption match { - case None => - Left(DataExtractionFailure(s"Subscription ${subscription.subscriptionNumber} doesn't have any rate plan")) - case Some(ratePlan) => Right(ratePlan) - } - } - - def subscriptionRatePlanCharges( - subscription: ZuoraSubscription, - ratePlan: ZuoraRatePlan - ): Either[DataExtractionFailure, List[ZuoraRatePlanCharge]] = { - - ratePlan.ratePlanCharges match { - case Nil => { - // Although not enforced by the signature of the function, for this error message to make sense we expect that - // the rate plan belongs to the currency - Left( - DataExtractionFailure(s"Subscription ${subscription.subscriptionNumber} has a rate plan, but with no charge") - ) - } - case _ => Right(ratePlan.ratePlanCharges) - } - } - - def getOldPrice( - subscription: ZuoraSubscription, - ratePlanCharges: List[ZuoraRatePlanCharge] - ): Either[DataExtractionFailure, BigDecimal] = { - ratePlanCharges match { - case Nil => { - // Although not enforced by the signature of the function, for this error message to make sense we expect that - // the rate plan charge belongs to the currency - Left( - DataExtractionFailure( - s"Subscription ${subscription.subscriptionNumber} has no rate plan charges" - ) - ) - } - case _ => { - Right(ratePlanCharges.flatMap(_.price).sum) - } - } - } - - def currencyToNewPriceMonthlies(currency: String): Either[DataExtractionFailure, BigDecimal] = { - newPriceMapMonthlies.get(currency) match { - case None => Left(DataExtractionFailure(s"Could not determine a new monthly price for currency: ${currency}")) - case Some(price) => Right(price) - } - } - - def currencyToNewPriceAnnuals(currency: String): Either[DataExtractionFailure, BigDecimal] = { - newPriceMapAnnuals.get(currency) match { - case None => Left(DataExtractionFailure(s"Could not determine a new annual price for currency: ${currency}")) - case Some(price) => Right(price) - } - } - - def currencyToNewPrice(billingP: String, currency: String): Either[DataExtractionFailure, BigDecimal] = { - if (billingP == "Month") { - currencyToNewPriceMonthlies(currency: String) - } else { - currencyToNewPriceAnnuals(currency: String) - } - } - - case class RatePlanChargePair( - chargeFromSubscription: ZuoraRatePlanCharge, - chargeFromProduct: ZuoraProductRatePlanCharge - ) - - def hasNotPriceAndDiscount(ratePlanCharge: ZuoraRatePlanCharge): Boolean = - ratePlanCharge.price.isDefined ^ ratePlanCharge.discountPercentage.exists(_ > 0) - - def ratePlanCharge( - subscription: ZuoraSubscription, - invoiceItem: ZuoraInvoiceItem - ): Either[DataExtractionFailure, ZuoraRatePlanCharge] = - ZuoraRatePlanCharge - .matchingRatePlanCharge(subscription, invoiceItem) - .filterOrElse( - hasNotPriceAndDiscount, - DataExtractionFailure(s"Rate plan charge '${invoiceItem.chargeNumber}' has price and discount") - ) - - def ratePlanChargesOrFail( - subscription: ZuoraSubscription, - invoiceItems: Seq[ZuoraInvoiceItem] - ): Either[DataExtractionFailure, Seq[ZuoraRatePlanCharge]] = { - val ratePlanCharges = invoiceItems.map(item => ratePlanCharge(subscription, item)) - val failures = ratePlanCharges.collect { case Left(failure) => failure } - - if (failures.isEmpty) Right(ratePlanCharges.collect { case Right(charge) => charge }) - else Left(DataExtractionFailure(failures.map(_.reason).mkString(", "))) - } - - def ratePlanChargePair( - catalogue: ZuoraProductCatalogue, - ratePlanCharge: ZuoraRatePlanCharge - ): Either[ZuoraProductRatePlanChargeId, RatePlanChargePair] = { - productPricingMap(catalogue) - .get(ratePlanCharge.productRatePlanChargeId) - .toRight(ratePlanCharge.productRatePlanChargeId) - .map(productRatePlanCharge => RatePlanChargePair(ratePlanCharge, productRatePlanCharge)) - } - - def ratePlanChargePairs( - catalogue: ZuoraProductCatalogue, - ratePlanCharges: Seq[ZuoraRatePlanCharge] - ): Either[DataExtractionFailure, Seq[RatePlanChargePair]] = { - /* - * distinct because where a sub has a discount rate plan, - * the same discount will appear against each product rate plan charge in the invoice preview. - */ - val pairs = ratePlanCharges.distinctBy(_.productRatePlanChargeId).map(rp => ratePlanChargePair(catalogue, rp)) - val failures = pairs.collect { case Left(failure) => failure } - if (failures.isEmpty) Right(pairs.collect { case Right(pricing) => pricing }) - else - Left( - DataExtractionFailure( - s"[SupporterPlus2023V1V2] Failed to find matching product rate plan charges for rate plan charges: ${failures.mkString(", ")}" - ) - ) - } - - def billingPeriod( - account: ZuoraAccount, - catalogue: ZuoraProductCatalogue, - subscription: ZuoraSubscription, - invoiceList: ZuoraInvoiceList, - nextServiceStartDate: LocalDate, - ): Either[DataExtractionFailure, String] = { - val invoiceItems = ZuoraInvoiceItem.items(invoiceList, subscription, nextServiceStartDate) - for { - ratePlanCharges <- ratePlanChargesOrFail(subscription, invoiceItems) - billingPeriod <- ratePlanCharges - .map(rpc => rpc.billingPeriod) - .filter(period => period.isDefined) - .map(rpc => rpc.get) - .headOption - .toRight(DataExtractionFailure("Unknown billing period")) - } yield billingPeriod - } - - def priceData( - account: ZuoraAccount, - catalogue: ZuoraProductCatalogue, - subscription: ZuoraSubscription, - invoiceList: ZuoraInvoiceList, - nextServiceDate: LocalDate, - cohortSpec: CohortSpec - ): Either[DataExtractionFailure, PriceData] = { - val result = (for { - ratePlan <- subscriptionRatePlan(subscription) - ratePlanCharges <- subscriptionRatePlanCharges(subscription, ratePlan) - currency = ratePlanCharges.head.currency - oldPrice <- getOldPrice(subscription, ratePlanCharges) - billingP <- billingPeriod(account, catalogue, subscription, invoiceList, nextServiceDate) - newPrice <- currencyToNewPrice(billingP, currency: String) - } yield { - PriceData(currency, oldPrice, newPrice, billingP) - }) - result match { - case Left(_) => result - case Right(priceData) => { - if (priceData.newPrice <= priceData.oldPrice) { - Right(priceData) - } else { - // I this case the new price is higher than the old price. (Meaning that the v2 rate plan is higher than the) - // old rate plan charge plus whichever extra contribution the subscription was paying. - // We would want to know about that and investigate. - Left( - DataExtractionFailure( - s"[SupporterPlus2023V1V2] Possibly incorrect pricing for subscription ${subscription.subscriptionNumber}. The new price, ${priceData.newPrice}, is higher than the old price, ${priceData.oldPrice}." - ) - ) - } - } - } - } - - def updateOfRatePlanToCurrentMonth( - item: CohortItem, - activeRatePlan: ZuoraRatePlan, - effectiveDate: LocalDate, - ): Either[DataExtractionFailure, ZuoraSubscriptionUpdate] = { - - /* - So... the logic here, which is going to be similar for Annuals, is that we compare the estimated price - with the price recorded in newPriceMapAnnuals. If they are similar, we will interpret as the fact that the - subscription was paying the exact rate plan amount. If it is higher than we will issue a charge override - for the contribution rate plan charge. - - All of this logic will be checked in tests. - */ - - val chargeOverrides: Option[List[ChargeOverride]] = for { - currency <- item.currency - price <- currencyToNewPrice("Month", currency).toOption - oldPrice <- item.oldPrice - } yield { - val baseCharge = ChargeOverride( - productRatePlanChargeId = "8a128ed885fc6ded018602296af13eba", // Monthly Base Charge - billingPeriod = "Month", - price = price - ) - if (oldPrice > price) { - List( - baseCharge, - ChargeOverride( - productRatePlanChargeId = "8a128d7085fc6dec01860234cd075270", // Monthly Contribution - billingPeriod = "Month", - price = oldPrice - price - ) - ) - } else { - List(baseCharge) - } - } - - chargeOverrides match { - case None => Left(DataExtractionFailure(s"Could not compute charge overrides for item: ${item}")) - case Some(charges) => - Right( - ZuoraSubscriptionUpdate( - add = List( - AddZuoraRatePlan("8a128ed885fc6ded018602296ace3eb8", effectiveDate, charges) - ), // supporter plus monthly v2 with specific charges - remove = List(RemoveZuoraRatePlan(activeRatePlan.id, effectiveDate)), - currentTerm = None, - currentTermPeriodType = None - ) - ) - } - } - - def updateOfRatePlanToCurrentAnnual( - item: CohortItem, - activeRatePlan: ZuoraRatePlan, - effectiveDate: LocalDate, - ): Either[DataExtractionFailure, ZuoraSubscriptionUpdate] = { - - val chargeOverrides = for { - currency <- item.currency - price <- currencyToNewPrice("Annual", currency).toOption - oldPrice <- item.oldPrice - } yield { - val baseCharge = ChargeOverride( - productRatePlanChargeId = "8a128ed885fc6ded01860228f7cb3d5f", // Annual Base Charge - billingPeriod = "Annual", - price = price - ) - if (oldPrice > price) { - List( - baseCharge, - ChargeOverride( - productRatePlanChargeId = "8a12892d85fc6df4018602451322287f", // Annual Contribution - billingPeriod = "Annual", - price = oldPrice - price - ) - ) - } else { - List(baseCharge) - } - } - - chargeOverrides match { - case None => Left(DataExtractionFailure("")) - case Some(charges) => - Right( - ZuoraSubscriptionUpdate( - add = List( - AddZuoraRatePlan("8a128ed885fc6ded01860228f77e3d5a", effectiveDate, charges) - ), // supporter plus annual v2 with specific charges - remove = List(RemoveZuoraRatePlan(activeRatePlan.id, effectiveDate)), - currentTerm = None, - currentTermPeriodType = None - ) - ) - } - } - - def zuoraUpdate( - item: CohortItem, - subscription: ZuoraSubscription, - invoiceList: ZuoraInvoiceList, - effectiveDate: LocalDate, - ): Either[DataExtractionFailure, ZuoraSubscriptionUpdate] = { - - val activeRatePlans = (for { - invoiceItem <- ZuoraInvoiceItem.items(invoiceList, subscription, effectiveDate) - ratePlanCharge <- ZuoraRatePlanCharge.matchingRatePlanCharge(subscription, invoiceItem).toSeq - price <- ratePlanCharge.price.toSeq - if price > 0 - ratePlan <- ZuoraRatePlan.ratePlanChargeToMatchingRatePlan(subscription, ratePlanCharge).toSeq - } yield ratePlan).distinct - - if (activeRatePlans.isEmpty) - Left(DataExtractionFailure(s"No rate plans to update for subscription ${subscription.subscriptionNumber}")) - else if (activeRatePlans.size > 1) - Left(DataExtractionFailure(s"Multiple rate plans to update: ${activeRatePlans.map(_.id)}")) - else { - // At this point we know that we have exactly one active rate plan - val activeRatePlan = activeRatePlans.head - item.billingPeriod match { - case Some("Month") => updateOfRatePlanToCurrentMonth(item, activeRatePlan, effectiveDate) - case Some("Annual") => updateOfRatePlanToCurrentAnnual(item, activeRatePlan, effectiveDate) - case _ => - Left( - DataExtractionFailure( - s"Unsupported billing period (expecting Month, Annual), got ${item.billingPeriod} from ${item}" - ) - ) - } - } - } -} diff --git a/lambda/src/main/scala/pricemigrationengine/model/AmendmentData.scala b/lambda/src/main/scala/pricemigrationengine/model/AmendmentData.scala index 1fa880f5..52995479 100644 --- a/lambda/src/main/scala/pricemigrationengine/model/AmendmentData.scala +++ b/lambda/src/main/scala/pricemigrationengine/model/AmendmentData.scala @@ -308,15 +308,6 @@ object AmendmentData { nextServiceStartDate, cohortSpec ) - case SupporterPlus2023V1V2MA => - SupporterPlus2023V1V2Migration.priceData( - account, - catalogue, - subscription, - invoiceList, - nextServiceStartDate, - cohortSpec - ) case DigiSubs2023 => DigiSubs2023Migration.priceData(subscription) case Newspaper2024 => newspaper2024Migration.Estimation.priceData(subscription) case GW2024 => GW2024Migration.priceData(subscription, account) diff --git a/lambda/src/main/scala/pricemigrationengine/model/MigrationType.scala b/lambda/src/main/scala/pricemigrationengine/model/MigrationType.scala index 3d96b68f..b4349619 100644 --- a/lambda/src/main/scala/pricemigrationengine/model/MigrationType.scala +++ b/lambda/src/main/scala/pricemigrationengine/model/MigrationType.scala @@ -15,7 +15,6 @@ sealed trait MigrationType object Legacy extends MigrationType // refers to all migrations before membership 2023 and supporter 2023 object Membership2023Monthlies extends MigrationType object Membership2023Annuals extends MigrationType -object SupporterPlus2023V1V2MA extends MigrationType object DigiSubs2023 extends MigrationType object Newspaper2024 extends MigrationType object GW2024 extends MigrationType @@ -26,7 +25,6 @@ object MigrationType { case "Membership2023_Batch1" => Membership2023Monthlies case "Membership2023_Batch2" => Membership2023Monthlies case "Membership2023_Batch3" => Membership2023Annuals - case "SupporterPlus2023V1V2" => SupporterPlus2023V1V2MA case "DigiSubs2023_Batch1" => DigiSubs2023 case "DigiSubs2023_Batch2" => DigiSubs2023 case "Newspaper2024" => Newspaper2024 diff --git a/lambda/src/main/scala/pricemigrationengine/util/StartDates.scala b/lambda/src/main/scala/pricemigrationengine/util/StartDates.scala index f4f8f2b8..edd7ac1d 100644 --- a/lambda/src/main/scala/pricemigrationengine/util/StartDates.scala +++ b/lambda/src/main/scala/pricemigrationengine/util/StartDates.scala @@ -28,7 +28,6 @@ object StartDates { def lastPriceRiseDate(cohortSpec: CohortSpec, subscription: ZuoraSubscription): Option[LocalDate] = { MigrationType(cohortSpec) match { case GW2024 => GW2024Migration.subscriptionToLastPriceMigrationDate(subscription) - case SupporterPlus2023V1V2MA => None case Membership2023Monthlies => None case Membership2023Annuals => None case DigiSubs2023 => None @@ -92,7 +91,6 @@ object StartDates { case Membership2023Monthlies => 1 case Membership2023Annuals => 1 case Newspaper2024 => newspaper2024Migration.Estimation.startDateSpreadPeriod(subscription) - case SupporterPlus2023V1V2MA => 3 case DigiSubs2023 => 3 case GW2024 => 3 case SupporterPlus2024 => 1 // no spread for S+2024 monthlies @@ -112,7 +110,6 @@ object StartDates { val startDateLowerBound1 = MigrationType(cohortSpec) match { case Newspaper2024 => newspaper2024Migration.Estimation.startDateLowerbound(today, subscription) - case SupporterPlus2023V1V2MA => cohortSpecLowerBound(cohortSpec, today) case Membership2023Monthlies => cohortSpecLowerBound(cohortSpec, today) case Membership2023Annuals => cohortSpecLowerBound(cohortSpec, today) case DigiSubs2023 => cohortSpecLowerBound(cohortSpec, today) diff --git a/lambda/src/test/scala/pricemigrationengine/handlers/AmendmentHandlerTest.scala b/lambda/src/test/scala/pricemigrationengine/handlers/AmendmentHandlerTest.scala index a0fbc244..26a43343 100644 --- a/lambda/src/test/scala/pricemigrationengine/handlers/AmendmentHandlerTest.scala +++ b/lambda/src/test/scala/pricemigrationengine/handlers/AmendmentHandlerTest.scala @@ -342,573 +342,4 @@ class AmendmentHandlerTest extends munit.FunSuite { ) ) } - - test("SupporterPlus2023V1V2 Amendment (monthly standard)") { - - val account = Fixtures.accountFromJson("Migrations/SupporterPlus2023V1V2/monthly-standard/account.json") - val catalogue = - Fixtures.productCatalogueFromJson("Migrations/SupporterPlus2023V1V2/monthly-standard/catalogue.json") - val subscription = - Fixtures.subscriptionFromJson("Migrations/SupporterPlus2023V1V2/monthly-standard/subscription.json") - val invoicePreview = - Fixtures.invoiceListFromJson("Migrations/SupporterPlus2023V1V2/monthly-standard/invoice-preview.json") - - // The effective date must be a billing date - // Here we get the next billing date according to the invoice preview. - val effectiveDate = LocalDate.of(2023, 8, 1) // annual: 2023-08-01 - - // ZuoraInvoiceItem.items finds the invoice items corresponding to that billing date - val invoiceItems = ZuoraInvoiceItem.items(invoicePreview, subscription, effectiveDate) - - val invoiceItemsCheck = - List(ZuoraInvoiceItem("SUBSCRIPTION-NUMBER", LocalDate.of(2023, 8, 1), "C-04240692", "Supporter Plus")) - assertEquals(invoiceItems, invoiceItemsCheck) - - // Now that we have an invoice Item, which carries a chargeNumber, in this case "C-04417974", we can use it to - // extract rate plan charges to get a collection of ZuoraRatePlanCharges - - val ratePlanCharges = ZuoraRatePlanCharge.matchingRatePlanCharge(subscription, invoiceItems.head).toSeq - val ratePlanChargesCheck = List( - ZuoraRatePlanCharge( - productRatePlanChargeId = "8a12865b8219d9b401822106194e64e3", - name = "Supporter Plus Monthly Charge", - number = "C-04240692", - currency = "GBP", - price = Some(10.0), - billingPeriod = Some("Month"), - chargedThroughDate = Some(LocalDate.of(2023, 8, 1)), - processedThroughDate = Some(LocalDate.of(2023, 7, 1)), - specificBillingPeriod = None, - endDateCondition = Some("Subscription_End"), - upToPeriodsType = None, - upToPeriods = None, - billingDay = Some("ChargeTriggerDay"), - triggerEvent = Some("CustomerAcceptance"), - triggerDate = None, - discountPercentage = None, - originalOrderDate = Some(LocalDate.of(2023, 4, 1)), - effectiveStartDate = Some(LocalDate.of(2023, 4, 1)), - effectiveEndDate = Some(LocalDate.of(2024, 7, 18)) - ) - ) - - assertEquals( - ratePlanCharges, - ratePlanChargesCheck - ) - - // And now that we have a ZuoraRatePlanCharge, we can use it to find a matching rate plans. - - val ratePlans = ZuoraRatePlan.ratePlanChargeToMatchingRatePlan(subscription, ratePlanCharges.head).toSeq - - assertEquals( - ratePlans, - List( - ZuoraRatePlan( - id = "8a129d388962fe000189679374ce42a1", - productName = "Supporter Plus", - productRatePlanId = "8a12865b8219d9b401822106192b64dc", - ratePlanName = "Supporter Plus Monthly", - ratePlanCharges = List( - ZuoraRatePlanCharge( - productRatePlanChargeId = "8a12865b8219d9b401822106194e64e3", - name = "Supporter Plus Monthly Charge", - number = "C-04240692", - currency = "GBP", - price = Some(10.0), - billingPeriod = Some("Month"), - chargedThroughDate = Some(LocalDate.of(2023, 8, 1)), - processedThroughDate = Some(LocalDate.of(2023, 7, 1)), - specificBillingPeriod = None, - endDateCondition = Some("Subscription_End"), - upToPeriodsType = None, - upToPeriods = None, - billingDay = Some("ChargeTriggerDay"), - triggerEvent = Some("CustomerAcceptance"), - triggerDate = None, - discountPercentage = None, - originalOrderDate = Some(LocalDate.of(2023, 4, 1)), - effectiveStartDate = Some(LocalDate.of(2023, 4, 1)), - effectiveEndDate = Some(LocalDate.of(2024, 7, 18)) - ) - ), - lastChangeType = Some("Add") - ) - ) - ) - - val item = - CohortItem( - subscriptionName = "SUBSCRIPTION-NUMBER", - processingStage = NotificationSendDateWrittenToSalesforce, - startDate = Some(LocalDate.of(2024, 7, 2)), - currency = Some("USD"), - oldPrice = Some(BigDecimal(120)), - estimatedNewPrice = Some(BigDecimal(120)), - billingPeriod = Some("Annual") - ) - - val update = SupporterPlus2023V1V2Migration.zuoraUpdate( - item, - subscription, - invoicePreview, - effectiveDate: LocalDate - ) - - // note: the product rate plan id we are removing it: 8a12865b8219d9b40182210618a464ba, but the subscription can - // have a slightly different "effective" rate plan with it's own id, in this case 8a128432890171d1018914866bee0e7f - - assertEquals( - update, - Right( - ZuoraSubscriptionUpdate( - add = List( - AddZuoraRatePlan( - "8a128ed885fc6ded01860228f77e3d5a", - LocalDate.of(2023, 8, 1), - List( - ChargeOverride( - productRatePlanChargeId = "8a128ed885fc6ded01860228f7cb3d5f", - billingPeriod = "Annual", - price = 120 - ) - ) - ) - ), - remove = List(RemoveZuoraRatePlan("8a129d388962fe000189679374ce42a1", LocalDate.of(2023, 8, 1))), - currentTerm = None, - currentTermPeriodType = None - ) - ) - ) - } - - test("SupporterPlus2023V1V2 Amendment (monthly contribution)") { - - val account = Fixtures.accountFromJson("Migrations/SupporterPlus2023V1V2/monthly-contribution/account.json") - val catalogue = - Fixtures.productCatalogueFromJson("Migrations/SupporterPlus2023V1V2/monthly-contribution/catalogue.json") - val subscription = - Fixtures.subscriptionFromJson("Migrations/SupporterPlus2023V1V2/monthly-contribution/subscription.json") - val invoicePreview = - Fixtures.invoiceListFromJson("Migrations/SupporterPlus2023V1V2/monthly-contribution/invoice-preview.json") - - // The effective date must be a billing date - // Here we get the next billing date according to the invoice preview. - val effectiveDate = LocalDate.of(2023, 8, 3) // montly: 2023-08-03 - - // ZuoraInvoiceItem.items finds the invoice items corresponding to that billing date - val invoiceItems = ZuoraInvoiceItem.items(invoicePreview, subscription, effectiveDate) - - val invoiceItemsCheck = - List( - ZuoraInvoiceItem("SUBSCRIPTION-NUMBER", LocalDate.of(2023, 8, 3), "C-04419773", "Supporter Plus"), - ) - assertEquals(invoiceItems, invoiceItemsCheck) - - // Now that we have an invoice Item, which carries a chargeNumber, in this case "C-04417974", we can use it to - // extract rate plan charges to get a collection of ZuoraRatePlanCharges - - val ratePlanCharges = ZuoraRatePlanCharge.matchingRatePlanCharge(subscription, invoiceItems.head).toSeq - val ratePlanChargesCheck = List( - ZuoraRatePlanCharge( - productRatePlanChargeId = "8a12865b8219d9b401822106194e64e3", - name = "Supporter Plus Monthly Charge", - number = "C-04419773", - currency = "GBP", - price = Some(25.0), - billingPeriod = Some("Month"), - chargedThroughDate = Some(LocalDate.of(2023, 8, 3)), - processedThroughDate = Some(LocalDate.of(2023, 7, 3)), - specificBillingPeriod = None, - endDateCondition = Some("Subscription_End"), - upToPeriodsType = None, - upToPeriods = None, - billingDay = Some("ChargeTriggerDay"), - triggerEvent = Some("CustomerAcceptance"), - triggerDate = None, - discountPercentage = None, - originalOrderDate = Some(LocalDate.of(2023, 7, 3)), - effectiveStartDate = Some(LocalDate.of(2023, 7, 3)), - effectiveEndDate = Some(LocalDate.of(2024, 7, 3)) - ) - ) - - assertEquals( - ratePlanCharges, - ratePlanChargesCheck - ) - - // And now that we have a ZuoraRatePlanCharge, we can use it to find a matching rate plans. - - val ratePlans = ZuoraRatePlan.ratePlanChargeToMatchingRatePlan(subscription, ratePlanCharges.head).toSeq - - assertEquals( - ratePlans, - List( - ZuoraRatePlan( - id = "8a12921d89018aaa01891bef52021b65", - productName = "Supporter Plus", - productRatePlanId = "8a12865b8219d9b401822106192b64dc", - ratePlanName = "Supporter Plus Monthly", - ratePlanCharges = List( - ZuoraRatePlanCharge( - productRatePlanChargeId = "8a12865b8219d9b401822106194e64e3", - name = "Supporter Plus Monthly Charge", - number = "C-04419773", - currency = "GBP", - price = Some(25.0), - billingPeriod = Some("Month"), - chargedThroughDate = Some(LocalDate.of(2023, 8, 3)), - processedThroughDate = Some(LocalDate.of(2023, 7, 3)), - specificBillingPeriod = None, - endDateCondition = Some("Subscription_End"), - upToPeriodsType = None, - upToPeriods = None, - billingDay = Some("ChargeTriggerDay"), - triggerEvent = Some("CustomerAcceptance"), - triggerDate = None, - discountPercentage = None, - originalOrderDate = Some(LocalDate.of(2023, 7, 3)), - effectiveStartDate = Some(LocalDate.of(2023, 7, 3)), - effectiveEndDate = Some(LocalDate.of(2024, 7, 3)) - ) - ), - lastChangeType = None - ) - ) - ) - - val cohortSpec = - CohortSpec("SupporterPlus2023V1V2", "Campaign1", LocalDate.of(2023, 7, 14), LocalDate.of(2023, 8, 21)) - - // The details of the item must match that of the estimation results in the corresponding EstimationHandlerTest - - val item = - CohortItem( - subscriptionName = "SUBSCRIPTION-NUMBER", - processingStage = NotificationSendDateWrittenToSalesforce, - startDate = Some(LocalDate.of(2023, 9, 3)), - currency = Some("GBP"), - oldPrice = Some(BigDecimal(25)), - estimatedNewPrice = Some(BigDecimal(10)), - billingPeriod = Some("Month") - ) - - val update = SupporterPlus2023V1V2Migration.zuoraUpdate( - item, - subscription, - invoicePreview, - effectiveDate: LocalDate - ) - - assertEquals( - update, - Right( - ZuoraSubscriptionUpdate( - add = List( - AddZuoraRatePlan( - "8a128ed885fc6ded018602296ace3eb8", - LocalDate.of(2023, 8, 3), - chargeOverrides = List( - ChargeOverride( - productRatePlanChargeId = "8a128ed885fc6ded018602296af13eba", - billingPeriod = "Month", - price = 10 - ), - ChargeOverride( - productRatePlanChargeId = "8a128d7085fc6dec01860234cd075270", - billingPeriod = "Month", - price = 15 - ) - ) - ) - ), - remove = List(RemoveZuoraRatePlan("8a12921d89018aaa01891bef52021b65", LocalDate.of(2023, 8, 3))), - currentTerm = None, - currentTermPeriodType = None - ) - ) - ) - } - - test("SupporterPlus2023V1V2 Amendment (annual standard)") { - - val account = Fixtures.accountFromJson("Migrations/SupporterPlus2023V1V2/annual-standard/account.json") - val catalogue = Fixtures.productCatalogueFromJson("Migrations/SupporterPlus2023V1V2/annual-standard/catalogue.json") - val subscription = - Fixtures.subscriptionFromJson("Migrations/SupporterPlus2023V1V2/annual-standard/subscription.json") - val invoicePreview = - Fixtures.invoiceListFromJson("Migrations/SupporterPlus2023V1V2/annual-standard/invoice-preview.json") - - // The effective date must be a billing date - // Here we get the next billing date according to the invoice preview. - val effectiveDate = LocalDate.of(2024, 7, 2) // annual: 2024-07-02 - - // ZuoraInvoiceItem.items finds the invoice items corresponding to that billing date - val invoiceItems = ZuoraInvoiceItem.items(invoicePreview, subscription, effectiveDate) - - val invoiceItemsCheck = - List(ZuoraInvoiceItem("SUBSCRIPTION-NUMBER", LocalDate.of(2024, 7, 2), "C-04417974", "Supporter Plus")) - assertEquals(invoiceItems, invoiceItemsCheck) - - // Now that we have an invoice Item, which carries a chargeNumber, in this case "C-04417974", we can use it to - // extract rate plan charges to get a collection of ZuoraRatePlanCharges - - val ratePlanCharges = ZuoraRatePlanCharge.matchingRatePlanCharge(subscription, invoiceItems.head).toSeq - val ratePlanChargesCheck = List( - ZuoraRatePlanCharge( - productRatePlanChargeId = "8a12865b8219d9b40182210618c664c1", - name = "Supporter Plus Annual Charge", - number = "C-04417974", - currency = "USD", - price = Some(120.0), - billingPeriod = Some("Annual"), - chargedThroughDate = Some(LocalDate.of(2024, 7, 2)), - processedThroughDate = Some(LocalDate.of(2023, 7, 2)), - specificBillingPeriod = None, - endDateCondition = Some("Subscription_End"), - upToPeriodsType = None, - upToPeriods = None, - billingDay = Some("ChargeTriggerDay"), - triggerEvent = Some("CustomerAcceptance"), - triggerDate = None, - discountPercentage = None, - originalOrderDate = Some(LocalDate.of(2023, 7, 2)), - effectiveStartDate = Some(LocalDate.of(2023, 7, 2)), - effectiveEndDate = Some(LocalDate.of(2024, 7, 2)) - ) - ) - - assertEquals( - ratePlanCharges, - ratePlanChargesCheck - ) - - // And now that we have a ZuoraRatePlanCharge, we can use it to find a matching rate plans. - - val ratePlans = ZuoraRatePlan.ratePlanChargeToMatchingRatePlan(subscription, ratePlanCharges.head).toSeq - - assertEquals( - ratePlans, - List( - ZuoraRatePlan( - id = "8a128432890171d1018914866bee0e7f", - productName = "Supporter Plus", - productRatePlanId = "8a12865b8219d9b40182210618a464ba", - ratePlanName = "Supporter Plus Annual", - ratePlanCharges = List( - ZuoraRatePlanCharge( - productRatePlanChargeId = "8a12865b8219d9b40182210618c664c1", - name = "Supporter Plus Annual Charge", - number = "C-04417974", - currency = "USD", - price = Some(120.0), - billingPeriod = Some("Annual"), - chargedThroughDate = Some(LocalDate.of(2024, 7, 2)), - processedThroughDate = Some(LocalDate.of(2023, 7, 2)), - specificBillingPeriod = None, - endDateCondition = Some("Subscription_End"), - upToPeriodsType = None, - upToPeriods = None, - billingDay = Some("ChargeTriggerDay"), - triggerEvent = Some("CustomerAcceptance"), - triggerDate = None, - discountPercentage = None, - originalOrderDate = Some(LocalDate.of(2023, 7, 2)), - effectiveStartDate = Some(LocalDate.of(2023, 7, 2)), - effectiveEndDate = Some(LocalDate.of(2024, 7, 2)) - ) - ), - lastChangeType = None - ) - ) - ) - - val item = - CohortItem( - subscriptionName = "SUBSCRIPTION-NUMBER", - processingStage = NotificationSendDateWrittenToSalesforce, - startDate = Some(LocalDate.of(2024, 7, 2)), - currency = Some("USD"), - oldPrice = Some(BigDecimal(120)), - estimatedNewPrice = Some(BigDecimal(120)), - billingPeriod = Some("Annual") - ) - - val update = SupporterPlus2023V1V2Migration.zuoraUpdate( - item, - subscription, - invoicePreview, - effectiveDate: LocalDate - ) - - // note: the product rate plan id we are removing it: 8a12865b8219d9b40182210618a464ba, but the subscription can - // have a slightly different "effective" rate plan with it's own id, in this case 8a128432890171d1018914866bee0e7f - - assertEquals( - update, - Right( - ZuoraSubscriptionUpdate( - add = List( - AddZuoraRatePlan( - "8a128ed885fc6ded01860228f77e3d5a", - LocalDate.of(2024, 7, 2), - List( - ChargeOverride( - productRatePlanChargeId = "8a128ed885fc6ded01860228f7cb3d5f", - billingPeriod = "Annual", - price = 120 - ) - ) - ) - ), - remove = List(RemoveZuoraRatePlan("8a128432890171d1018914866bee0e7f", LocalDate.of(2024, 7, 2))), - currentTerm = None, - currentTermPeriodType = None - ) - ) - ) - } - - test("SupporterPlus2023V1V2 Amendment (annual contribution)") { - - val account = Fixtures.accountFromJson("Migrations/SupporterPlus2023V1V2/annual-contribution/account.json") - val catalogue = - Fixtures.productCatalogueFromJson("Migrations/SupporterPlus2023V1V2/annual-contribution/catalogue.json") - val subscription = - Fixtures.subscriptionFromJson("Migrations/SupporterPlus2023V1V2/annual-contribution/subscription.json") - val invoicePreview = - Fixtures.invoiceListFromJson("Migrations/SupporterPlus2023V1V2/annual-contribution/invoice-preview.json") - - // The effective date must be a billing date - // Here we get the next billing date according to the invoice preview. - val effectiveDate = LocalDate.of(2024, 6, 28) // annual: 2024-07-02 - - // ZuoraInvoiceItem.items finds the invoice items corresponding to that billing date - val invoiceItems = ZuoraInvoiceItem.items(invoicePreview, subscription, effectiveDate) - - val invoiceItemsCheck = - List( - ZuoraInvoiceItem("SUBSCRIPTION-NUMBER", LocalDate.of(2024, 6, 28), "C-04411538", "Supporter Plus"), - ) - assertEquals(invoiceItems, invoiceItemsCheck) - - val ratePlanCharges = ZuoraRatePlanCharge.matchingRatePlanCharge(subscription, invoiceItems.head).toSeq - val ratePlanChargesCheck = List( - ZuoraRatePlanCharge( - productRatePlanChargeId = "8a12865b8219d9b40182210618c664c1", - name = "Supporter Plus Annual Charge", - number = "C-04411538", - currency = "GBP", - price = Some(120.0), - billingPeriod = Some("Annual"), - chargedThroughDate = Some(LocalDate.of(2024, 6, 28)), - processedThroughDate = Some(LocalDate.of(2023, 6, 28)), - specificBillingPeriod = None, - endDateCondition = Some("Subscription_End"), - upToPeriodsType = None, - upToPeriods = None, - billingDay = Some("ChargeTriggerDay"), - triggerEvent = Some("CustomerAcceptance"), - triggerDate = None, - discountPercentage = None, - originalOrderDate = Some(LocalDate.of(2023, 6, 28)), - effectiveStartDate = Some(LocalDate.of(2023, 6, 28)), - effectiveEndDate = Some(LocalDate.of(2024, 6, 28)) - ) - ) - - assertEquals( - ratePlanCharges, - ratePlanChargesCheck - ) - - // And now that we have a ZuoraRatePlanCharge, we can use it to find a matching rate plans. - - val ratePlans = ZuoraRatePlan.ratePlanChargeToMatchingRatePlan(subscription, ratePlanCharges.head).toSeq - - assertEquals( - ratePlans, - List( - ZuoraRatePlan( - id = "8a12843288f6ded10188ff5fbef67bb3", - productName = "Supporter Plus", - productRatePlanId = "8a12865b8219d9b40182210618a464ba", - ratePlanName = "Supporter Plus Annual", - ratePlanCharges = List( - ZuoraRatePlanCharge( - productRatePlanChargeId = "8a12865b8219d9b40182210618c664c1", - name = "Supporter Plus Annual Charge", - number = "C-04411538", - currency = "GBP", - price = Some(120.0), - billingPeriod = Some("Annual"), - chargedThroughDate = Some(LocalDate.of(2024, 6, 28)), - processedThroughDate = Some(LocalDate.of(2023, 6, 28)), - specificBillingPeriod = None, - endDateCondition = Some("Subscription_End"), - upToPeriodsType = None, - upToPeriods = None, - billingDay = Some("ChargeTriggerDay"), - triggerEvent = Some("CustomerAcceptance"), - triggerDate = None, - discountPercentage = None, - originalOrderDate = Some(LocalDate.of(2023, 6, 28)), - effectiveStartDate = Some(LocalDate.of(2023, 6, 28)), - effectiveEndDate = Some(LocalDate.of(2024, 6, 28)) - ) - ), - lastChangeType = None - ) - ) - ) - - val item = - CohortItem( - subscriptionName = "SUBSCRIPTION-NUMBER", - processingStage = NotificationSendDateWrittenToSalesforce, - startDate = Some(LocalDate.of(2024, 6, 28)), - currency = Some("GBP"), - oldPrice = Some(BigDecimal(120)), // Here we simulate the subscription having a £25 contribution - estimatedNewPrice = Some(BigDecimal(95)), // correct rate plan price for annual GBP - billingPeriod = Some("Annual") - ) - - val update = SupporterPlus2023V1V2Migration.zuoraUpdate( - item, - subscription, - invoicePreview, - effectiveDate: LocalDate - ) - - assertEquals( - update, - Right( - ZuoraSubscriptionUpdate( - add = List( - AddZuoraRatePlan( - "8a128ed885fc6ded01860228f77e3d5a", - LocalDate.of(2024, 6, 28), - chargeOverrides = List( - ChargeOverride( - productRatePlanChargeId = "8a128ed885fc6ded01860228f7cb3d5f", - billingPeriod = "Annual", - price = 95 - ), - ChargeOverride( - productRatePlanChargeId = "8a12892d85fc6df4018602451322287f", - billingPeriod = "Annual", - price = 25 - ) - ) - ) - ), - remove = List(RemoveZuoraRatePlan("8a12843288f6ded10188ff5fbef67bb3", LocalDate.of(2024, 6, 28))), - currentTerm = None, - currentTermPeriodType = None - ) - ) - ) - } } diff --git a/lambda/src/test/scala/pricemigrationengine/handlers/EstimationHandlerTest.scala b/lambda/src/test/scala/pricemigrationengine/handlers/EstimationHandlerTest.scala index dfe38ba0..97da901d 100644 --- a/lambda/src/test/scala/pricemigrationengine/handlers/EstimationHandlerTest.scala +++ b/lambda/src/test/scala/pricemigrationengine/handlers/EstimationHandlerTest.scala @@ -174,179 +174,7 @@ object EstimationHandlerTest extends ZIOSpecDefault { // The earliest start date needs to be 32 days ahead of today -> 2023-05-05 assertTrue(StartDates.cohortSpecLowerBound(cohortSpec, today) == LocalDate.of(2023, 5, 3)) - }, - test("EstimationResult is correct for SupporterPlus2023V1V2 (monthly standard)") { - - val cohortSpec = - CohortSpec("SupporterPlus2023V1V2", "Campaign1", LocalDate.of(2023, 7, 14), LocalDate.of(2023, 8, 21)) - - val account = Fixtures.accountFromJson("Migrations/SupporterPlus2023V1V2/monthly-standard/account.json") - val catalogue = - Fixtures.productCatalogueFromJson("Migrations/SupporterPlus2023V1V2/monthly-standard/catalogue.json") - val subscription = - Fixtures.subscriptionFromJson("Migrations/SupporterPlus2023V1V2/monthly-standard/subscription.json") - val invoicePreview = - Fixtures.invoiceListFromJson("Migrations/SupporterPlus2023V1V2/monthly-standard/invoice-preview.json") - - val estimationResult = EstimationResult( - account = account, - catalogue = catalogue, - subscription = subscription, - invoiceList = invoicePreview, - startDateLowerBound = LocalDate.of(2023, 8, 21), - cohortSpec = cohortSpec, - ).toOption.get - - assertTrue( - estimationResult == - EstimationData( - subscriptionName = "SUBSCRIPTION-NUMBER", - startDate = LocalDate.of(2023, 9, 1), - currency = "GBP", - oldPrice = BigDecimal(10.0), - estimatedNewPrice = BigDecimal(10), - billingPeriod = "Month" - ) - ) - }, - test("EstimationResult is correct for SupporterPlus2023V1V2 (monthly contribution)") { - - val cohortSpec = - CohortSpec("SupporterPlus2023V1V2", "Campaign1", LocalDate.of(2023, 7, 14), LocalDate.of(2023, 8, 21)) - - val account = Fixtures.accountFromJson("Migrations/SupporterPlus2023V1V2/monthly-contribution/account.json") - val catalogue = - Fixtures.productCatalogueFromJson("Migrations/SupporterPlus2023V1V2/monthly-contribution/catalogue.json") - val subscription = - Fixtures.subscriptionFromJson("Migrations/SupporterPlus2023V1V2/monthly-contribution/subscription.json") - val invoicePreview = - Fixtures.invoiceListFromJson("Migrations/SupporterPlus2023V1V2/monthly-contribution/invoice-preview.json") - - val estimationResult = EstimationResult( - account = account, - catalogue = catalogue, - subscription = subscription, - invoiceList = invoicePreview, - startDateLowerBound = LocalDate.of(2023, 8, 21), - cohortSpec = cohortSpec, - ).toOption.get - - assertTrue( - estimationResult == - EstimationData( - subscriptionName = "SUBSCRIPTION-NUMBER", - startDate = LocalDate.of(2023, 9, 3), - currency = "GBP", - oldPrice = BigDecimal(25.0), - estimatedNewPrice = BigDecimal(10), - billingPeriod = "Month" - ) - ) - }, - test("EstimationResult is correct for SupporterPlus2023V1V2 (annual standard)") { - - val cohortSpec = - CohortSpec("SupporterPlus2023V1V2", "Campaign1", LocalDate.of(2023, 7, 14), LocalDate.of(2023, 8, 21)) - - val account = Fixtures.accountFromJson("Migrations/SupporterPlus2023V1V2/annual-standard/account.json") - val catalogue = - Fixtures.productCatalogueFromJson("Migrations/SupporterPlus2023V1V2/annual-standard/catalogue.json") - val subscription = - Fixtures.subscriptionFromJson("Migrations/SupporterPlus2023V1V2/annual-standard/subscription.json") - val invoicePreview = - Fixtures.invoiceListFromJson("Migrations/SupporterPlus2023V1V2/annual-standard/invoice-preview.json") - - val estimationResult = EstimationResult( - account = account, - catalogue = catalogue, - subscription = subscription, - invoiceList = invoicePreview, - startDateLowerBound = LocalDate.of(2023, 8, 21), - cohortSpec = cohortSpec, - ).toOption.get - - assertTrue( - estimationResult == - EstimationData( - subscriptionName = "SUBSCRIPTION-NUMBER", - startDate = LocalDate.of(2024, 7, 2), - currency = "USD", - oldPrice = BigDecimal(120), - estimatedNewPrice = BigDecimal(120), - billingPeriod = "Annual" - ) - ) - }, - test("EstimationResult is correct for SupporterPlus2023V1V2 (annual contribution)") { - - val cohortSpec = - CohortSpec("SupporterPlus2023V1V2", "Campaign1", LocalDate.of(2023, 7, 14), LocalDate.of(2023, 8, 21)) - - val account = Fixtures.accountFromJson("Migrations/SupporterPlus2023V1V2/annual-contribution/account.json") - val catalogue = - Fixtures.productCatalogueFromJson("Migrations/SupporterPlus2023V1V2/annual-contribution/catalogue.json") - val subscription = - Fixtures.subscriptionFromJson("Migrations/SupporterPlus2023V1V2/annual-contribution/subscription.json") - val invoicePreview = - Fixtures.invoiceListFromJson("Migrations/SupporterPlus2023V1V2/annual-contribution/invoice-preview.json") - - val estimationResult = EstimationResult( - account = account, - catalogue = catalogue, - subscription = subscription, - invoiceList = invoicePreview, - startDateLowerBound = LocalDate.of(2023, 8, 21), - cohortSpec = cohortSpec, - ).toOption.get - - assertTrue( - estimationResult == - EstimationData( - subscriptionName = "SUBSCRIPTION-NUMBER", - startDate = LocalDate.of(2024, 6, 28), - currency = "GBP", - oldPrice = BigDecimal(120), - estimatedNewPrice = BigDecimal(95), - billingPeriod = "Annual" - ) - ) - }, - test( - "EstimationResult is correct for SupporterPlus2023V1V2 (the curious case of a monthly with incorrect old price)" - ) { - - val cohortSpec = - CohortSpec("SupporterPlus2023V1V2", "Campaign1", LocalDate.of(2023, 7, 14), LocalDate.of(2023, 8, 21)) - - val account = Fixtures.accountFromJson("Migrations/SupporterPlus2023V1V2/z-monthly-extra-case-1/account.json") - val catalogue = - Fixtures.productCatalogueFromJson("Migrations/SupporterPlus2023V1V2/z-monthly-extra-case-1/catalogue.json") - val subscription = - Fixtures.subscriptionFromJson("Migrations/SupporterPlus2023V1V2/z-monthly-extra-case-1/subscription.json") - val invoicePreview = - Fixtures.invoiceListFromJson("Migrations/SupporterPlus2023V1V2/z-monthly-extra-case-1/invoice-preview.json") - - val estimationResult = EstimationResult( - account = account, - catalogue = catalogue, - subscription = subscription, - invoiceList = invoicePreview, - startDateLowerBound = LocalDate.of(2023, 8, 21), - cohortSpec = cohortSpec, - ).toOption.get - - assertTrue( - estimationResult == - EstimationData( - subscriptionName = "SUBSCRIPTION-NUMBER", - startDate = LocalDate.of(2023, 9, 8), - currency = "GBP", - oldPrice = BigDecimal(10.0), - estimatedNewPrice = BigDecimal(10), - billingPeriod = "Month" - ) - ) - }, + } ) } } diff --git a/lambda/src/test/scala/pricemigrationengine/model/AmendmentDataTest.scala b/lambda/src/test/scala/pricemigrationengine/model/AmendmentDataTest.scala index 64af633f..651df164 100644 --- a/lambda/src/test/scala/pricemigrationengine/model/AmendmentDataTest.scala +++ b/lambda/src/test/scala/pricemigrationengine/model/AmendmentDataTest.scala @@ -610,706 +610,4 @@ class AmendmentDataTest extends munit.FunSuite { Right(PriceData(currency = "USD", oldPrice = 69, newPrice = 120, billingPeriod = "Annual")) ) } - - test("billing period is correct for SupporterPlus2023V1V2 (monthly standard)") { - val cohortSpec = - CohortSpec("SupporterPlus2023V1V2", "Campaign1", LocalDate.of(2023, 7, 14), LocalDate.of(2023, 8, 21)) - - val account = Fixtures.accountFromJson("Migrations/SupporterPlus2023V1V2/monthly-standard/account.json") - val catalogue = - Fixtures.productCatalogueFromJson("Migrations/SupporterPlus2023V1V2/monthly-standard/catalogue.json") - val subscription = - Fixtures.subscriptionFromJson("Migrations/SupporterPlus2023V1V2/monthly-standard/subscription.json") - val invoicePreview = - Fixtures.invoiceListFromJson("Migrations/SupporterPlus2023V1V2/monthly-standard/invoice-preview.json") - - val nextServiceStartDate = LocalDate.of(2023, 8, 1) - - val invoiceItems = ZuoraInvoiceItem.items(invoicePreview, subscription, nextServiceStartDate) - assertEquals( - invoiceItems, - List( - ZuoraInvoiceItem( - subscriptionNumber = "SUBSCRIPTION-NUMBER", - serviceStartDate = LocalDate.of(2023, 8, 1), - chargeNumber = "C-04240692", - productName = "Supporter Plus" - ) - ) - ) - - val rpcof = SupporterPlus2023V1V2Migration.ratePlanChargesOrFail(subscription, invoiceItems) - assertEquals( - rpcof, - Right( - List( - ZuoraRatePlanCharge( - productRatePlanChargeId = "8a12865b8219d9b401822106194e64e3", // Supporter Plus Monthly Charge (GBP) - name = "Supporter Plus Monthly Charge", - number = "C-04240692", - currency = "GBP", - price = Some(10.0), - billingPeriod = Some("Month"), - chargedThroughDate = Some(LocalDate.of(2023, 8, 1)), - processedThroughDate = Some(LocalDate.of(2023, 7, 1)), - specificBillingPeriod = None, - endDateCondition = Some("Subscription_End"), - upToPeriodsType = None, - upToPeriods = None, - billingDay = Some("ChargeTriggerDay"), - triggerEvent = Some("CustomerAcceptance"), - triggerDate = None, - discountPercentage = None, - originalOrderDate = Some(LocalDate.of(2023, 4, 1)), - effectiveStartDate = Some(LocalDate.of(2023, 4, 1)), - effectiveEndDate = Some(LocalDate.of(2024, 7, 18)) - ) - ) - ) - ) - - val billingPeriod = - SupporterPlus2023V1V2Migration.billingPeriod( - account, - catalogue, - subscription, - invoicePreview, - LocalDate.of(2023, 8, 1) - ) - - assertEquals( - billingPeriod, - Right("Month") - ) - } - - test("billing period is correct for SupporterPlus2023V1V2 (monthly contribution)") { - val cohortSpec = - CohortSpec("SupporterPlus2023V1V2", "Campaign1", LocalDate.of(2023, 7, 14), LocalDate.of(2023, 8, 21)) - - val account = Fixtures.accountFromJson("Migrations/SupporterPlus2023V1V2/monthly-contribution/account.json") - val catalogue = - Fixtures.productCatalogueFromJson("Migrations/SupporterPlus2023V1V2/monthly-contribution/catalogue.json") - val subscription = - Fixtures.subscriptionFromJson("Migrations/SupporterPlus2023V1V2/monthly-contribution/subscription.json") - val invoicePreview = - Fixtures.invoiceListFromJson("Migrations/SupporterPlus2023V1V2/monthly-contribution/invoice-preview.json") - - val nextServiceStartDate = LocalDate.of(2023, 8, 3) - - val invoiceItems = ZuoraInvoiceItem.items(invoicePreview, subscription, nextServiceStartDate) - assertEquals( - invoiceItems, - List( - ZuoraInvoiceItem( - subscriptionNumber = "SUBSCRIPTION-NUMBER", - serviceStartDate = LocalDate.of(2023, 8, 3), - chargeNumber = "C-04419773", - productName = "Supporter Plus" - ) - ) - ) - - val rpcof = SupporterPlus2023V1V2Migration.ratePlanChargesOrFail(subscription, invoiceItems) - assertEquals( - rpcof, - Right( - List( - ZuoraRatePlanCharge( - productRatePlanChargeId = "8a12865b8219d9b401822106194e64e3", // Supporter Plus Monthly Charge (USD) - name = "Supporter Plus Monthly Charge", - number = "C-04419773", - currency = "GBP", - price = Some(25.0), - billingPeriod = Some("Month"), - chargedThroughDate = Some(LocalDate.of(2023, 8, 3)), - processedThroughDate = Some(LocalDate.of(2023, 7, 3)), - specificBillingPeriod = None, - endDateCondition = Some("Subscription_End"), - upToPeriodsType = None, - upToPeriods = None, - billingDay = Some("ChargeTriggerDay"), - triggerEvent = Some("CustomerAcceptance"), - triggerDate = None, - discountPercentage = None, - originalOrderDate = Some(LocalDate.of(2023, 7, 3)), - effectiveStartDate = Some(LocalDate.of(2023, 7, 3)), - effectiveEndDate = Some(LocalDate.of(2024, 7, 3)) - ) - ) - ) - ) - - val billingPeriod = - SupporterPlus2023V1V2Migration.billingPeriod( - account, - catalogue, - subscription, - invoicePreview, - LocalDate.of(2023, 8, 3) - ) - - assertEquals( - billingPeriod, - Right("Month") - ) - } - - test("billing period is correct for SupporterPlus2023V1V2 (annual standard)") { - val cohortSpec = - CohortSpec("SupporterPlus2023V1V2", "Campaign1", LocalDate.of(2023, 7, 14), LocalDate.of(2023, 8, 21)) - - val account = Fixtures.accountFromJson("Migrations/SupporterPlus2023V1V2/annual-standard/account.json") - val catalogue = Fixtures.productCatalogueFromJson("Migrations/SupporterPlus2023V1V2/annual-standard/catalogue.json") - val subscription = - Fixtures.subscriptionFromJson("Migrations/SupporterPlus2023V1V2/annual-standard/subscription.json") - val invoicePreview = - Fixtures.invoiceListFromJson("Migrations/SupporterPlus2023V1V2/annual-standard/invoice-preview.json") - - val nextServiceStartDate = LocalDate.of(2024, 7, 2) - - val invoiceItems = ZuoraInvoiceItem.items(invoicePreview, subscription, nextServiceStartDate) - assertEquals( - invoiceItems, - List( - ZuoraInvoiceItem( - subscriptionNumber = "SUBSCRIPTION-NUMBER", - serviceStartDate = LocalDate.of(2024, 7, 2), - chargeNumber = "C-04417974", - productName = "Supporter Plus" - ) - ) - ) - - val rpcof = SupporterPlus2023V1V2Migration.ratePlanChargesOrFail(subscription, invoiceItems) - assertEquals( - rpcof, - Right( - List( - ZuoraRatePlanCharge( - productRatePlanChargeId = "8a12865b8219d9b40182210618c664c1", // Supporter Plus Annual Charge (USD) - name = "Supporter Plus Annual Charge", - number = "C-04417974", - currency = "USD", - price = Some(120.0), - billingPeriod = Some("Annual"), - chargedThroughDate = Some(LocalDate.of(2024, 7, 2)), - processedThroughDate = Some(LocalDate.of(2023, 7, 2)), - specificBillingPeriod = None, - endDateCondition = Some("Subscription_End"), - upToPeriodsType = None, - upToPeriods = None, - billingDay = Some("ChargeTriggerDay"), - triggerEvent = Some("CustomerAcceptance"), - triggerDate = None, - discountPercentage = None, - originalOrderDate = Some(LocalDate.of(2023, 7, 2)), - effectiveStartDate = Some(LocalDate.of(2023, 7, 2)), - effectiveEndDate = Some(LocalDate.of(2024, 7, 2)) - ) - ) - ) - ) - - val billingPeriod = - SupporterPlus2023V1V2Migration.billingPeriod( - account, - catalogue, - subscription, - invoicePreview, - LocalDate.of(2024, 7, 2) - ) - - assertEquals( - billingPeriod, - Right("Annual") - ) - } - - test("priceData: is correct for SupporterPlus2023V1V2 (monthly standard)") { - - val cohortSpec = - CohortSpec("SupporterPlus2023V1V2", "Campaign1", LocalDate.of(2023, 7, 14), LocalDate.of(2023, 8, 21)) - - val account = Fixtures.accountFromJson("Migrations/SupporterPlus2023V1V2/monthly-standard/account.json") - val catalogue = - Fixtures.productCatalogueFromJson("Migrations/SupporterPlus2023V1V2/monthly-standard/catalogue.json") - val subscription = - Fixtures.subscriptionFromJson("Migrations/SupporterPlus2023V1V2/monthly-standard/subscription.json") - val invoicePreview = - Fixtures.invoiceListFromJson("Migrations/SupporterPlus2023V1V2/monthly-standard/invoice-preview.json") - - // We are going to use this test to make the computation of the price data for supporter plus explicit - - // We are using this `.toOption.get` technique to go through the original for construct step by step - // By doing so we could get a runtime error while running the tests instead of a test framework error. - // In either case it's an error :) - - val ratePlan = SupporterPlus2023V1V2Migration.subscriptionRatePlan(subscription: ZuoraSubscription).toOption.get - assertEquals( - ratePlan, - ZuoraRatePlan( - id = "8a129d388962fe000189679374ce42a1", - productName = "Supporter Plus", - productRatePlanId = "8a12865b8219d9b401822106192b64dc", - ratePlanName = "Supporter Plus Monthly", - List( - ZuoraRatePlanCharge( - productRatePlanChargeId = "8a12865b8219d9b401822106194e64e3", - name = "Supporter Plus Monthly Charge", - number = "C-04240692", - currency = "GBP", - price = Some(10.0), - billingPeriod = Some("Month"), - chargedThroughDate = Some(LocalDate.of(2023, 8, 1)), - processedThroughDate = Some(LocalDate.of(2023, 7, 1)), - specificBillingPeriod = None, - endDateCondition = Some("Subscription_End"), - upToPeriodsType = None, - upToPeriods = None, - billingDay = Some("ChargeTriggerDay"), - triggerEvent = Some("CustomerAcceptance"), - triggerDate = None, - discountPercentage = None, - originalOrderDate = Some(LocalDate.of(2023, 4, 1)), - effectiveStartDate = Some(LocalDate.of(2023, 4, 1)), - effectiveEndDate = Some(LocalDate.of(2024, 7, 18)) - ) - ), - lastChangeType = Some("Add") - ) - ) - - val ratePlanCharges = - SupporterPlus2023V1V2Migration.subscriptionRatePlanCharges(subscription, ratePlan).toOption.get - assertEquals( - ratePlanCharges, - List( - ZuoraRatePlanCharge( - productRatePlanChargeId = "8a12865b8219d9b401822106194e64e3", - name = "Supporter Plus Monthly Charge", - number = "C-04240692", - currency = "GBP", - price = Some(10.0), - billingPeriod = Some("Month"), - chargedThroughDate = Some(LocalDate.of(2023, 8, 1)), - processedThroughDate = Some(LocalDate.of(2023, 7, 1)), - specificBillingPeriod = None, - endDateCondition = Some("Subscription_End"), - upToPeriodsType = None, - upToPeriods = None, - billingDay = Some("ChargeTriggerDay"), - triggerEvent = Some("CustomerAcceptance"), - triggerDate = None, - discountPercentage = None, - originalOrderDate = Some(LocalDate.of(2023, 4, 1)), - effectiveStartDate = Some(LocalDate.of(2023, 4, 1)), - effectiveEndDate = Some(LocalDate.of(2024, 7, 18)) - ) - ) - ) - - val currency = ratePlanCharges.head.currency - assertEquals( - currency, - "GBP" - ) - - val oldPrice = SupporterPlus2023V1V2Migration.getOldPrice(subscription, ratePlanCharges).toOption.get - assertEquals( - oldPrice, - BigDecimal(10) - ) - - val billingP = - SupporterPlus2023V1V2Migration - .billingPeriod(account, catalogue, subscription, invoicePreview, LocalDate.of(2024, 4, 1)) - .toOption - .get - assertEquals( - billingP, - "Month" - ) - - val newPrice = SupporterPlus2023V1V2Migration.currencyToNewPrice(billingP, currency).toOption.get - assertEquals( - newPrice, - BigDecimal(10) - ) - - val priceData = - AmendmentData - .priceData(account, catalogue, subscription, invoicePreview, LocalDate.of(2024, 4, 1), cohortSpec) - .toOption - .get - assertEquals( - priceData, - PriceData(currency, 10, 10, "Month") - ) - } - - test("priceData: is correct for SupporterPlus2023V1V2 (monthly contribution)") { - - val cohortSpec = - CohortSpec("SupporterPlus2023V1V2", "Campaign1", LocalDate.of(2023, 7, 14), LocalDate.of(2023, 8, 21)) - - val account = Fixtures.accountFromJson("Migrations/SupporterPlus2023V1V2/monthly-contribution/account.json") - val catalogue = - Fixtures.productCatalogueFromJson("Migrations/SupporterPlus2023V1V2/monthly-contribution/catalogue.json") - val subscription = - Fixtures.subscriptionFromJson("Migrations/SupporterPlus2023V1V2/monthly-contribution/subscription.json") - val invoicePreview = - Fixtures.invoiceListFromJson("Migrations/SupporterPlus2023V1V2/monthly-contribution/invoice-preview.json") - - // We are going to use this test to make the computation of the price data for supporter plus explicit - - // We are using this `.toOption.get` technique to go through the original for construct step by step - // By doing so we could get a runtime error while running the tests instead of a test framework error. - // In either case it's an error :) - - val ratePlan = SupporterPlus2023V1V2Migration.subscriptionRatePlan(subscription: ZuoraSubscription).toOption.get - assertEquals( - ratePlan, - ZuoraRatePlan( - id = "8a12921d89018aaa01891bef52021b65", - productName = "Supporter Plus", - productRatePlanId = "8a12865b8219d9b401822106192b64dc", - ratePlanName = "Supporter Plus Monthly", - List( - ZuoraRatePlanCharge( - productRatePlanChargeId = "8a12865b8219d9b401822106194e64e3", - name = "Supporter Plus Monthly Charge", - number = "C-04419773", - currency = "GBP", - price = Some(25.0), - billingPeriod = Some("Month"), - chargedThroughDate = Some(LocalDate.of(2023, 8, 3)), - processedThroughDate = Some(LocalDate.of(2023, 7, 3)), - specificBillingPeriod = None, - endDateCondition = Some("Subscription_End"), - upToPeriodsType = None, - upToPeriods = None, - billingDay = Some("ChargeTriggerDay"), - triggerEvent = Some("CustomerAcceptance"), - triggerDate = None, - discountPercentage = None, - originalOrderDate = Some(LocalDate.of(2023, 7, 3)), - effectiveStartDate = Some(LocalDate.of(2023, 7, 3)), - effectiveEndDate = Some(LocalDate.of(2024, 7, 3)) - ) - ), - lastChangeType = None - ) - ) - - val ratePlanCharges = - SupporterPlus2023V1V2Migration.subscriptionRatePlanCharges(subscription, ratePlan).toOption.get - assertEquals( - ratePlanCharges, - List( - ZuoraRatePlanCharge( - productRatePlanChargeId = "8a12865b8219d9b401822106194e64e3", - name = "Supporter Plus Monthly Charge", - number = "C-04419773", - currency = "GBP", - price = Some(25.0), - billingPeriod = Some("Month"), - chargedThroughDate = Some(LocalDate.of(2023, 8, 3)), - processedThroughDate = Some(LocalDate.of(2023, 7, 3)), - specificBillingPeriod = None, - endDateCondition = Some("Subscription_End"), - upToPeriodsType = None, - upToPeriods = None, - billingDay = Some("ChargeTriggerDay"), - triggerEvent = Some("CustomerAcceptance"), - triggerDate = None, - discountPercentage = None, - originalOrderDate = Some(LocalDate.of(2023, 7, 3)), - effectiveStartDate = Some(LocalDate.of(2023, 7, 3)), - effectiveEndDate = Some(LocalDate.of(2024, 7, 3)) - ) - ) - ) - - val currency = ratePlanCharges.head.currency - assertEquals( - currency, - "GBP" - ) - - val oldPrice = SupporterPlus2023V1V2Migration.getOldPrice(subscription, ratePlanCharges).toOption.get - assertEquals( - oldPrice, - BigDecimal(25.0) - ) - - val billingP = - SupporterPlus2023V1V2Migration - .billingPeriod(account, catalogue, subscription, invoicePreview, LocalDate.of(2023, 8, 3)) - .toOption - .get - assertEquals( - billingP, - "Month" - ) - - val newPrice = SupporterPlus2023V1V2Migration.currencyToNewPrice(billingP, currency).toOption.get - assertEquals( - newPrice, - BigDecimal(10) - ) - - val priceData = - AmendmentData - .priceData(account, catalogue, subscription, invoicePreview, LocalDate.of(2023, 8, 3), cohortSpec) - .toOption - .get - assertEquals( - priceData, - PriceData(currency, 25, 10, "Month") - ) - } - - test("priceData: is correct for SupporterPlus2023V1V2 (annual standard)") { - - val cohortSpec = - CohortSpec("SupporterPlus2023V1V2", "Campaign1", LocalDate.of(2023, 7, 14), LocalDate.of(2023, 8, 21)) - - val account = Fixtures.accountFromJson("Migrations/SupporterPlus2023V1V2/annual-standard/account.json") - val catalogue = Fixtures.productCatalogueFromJson("Migrations/SupporterPlus2023V1V2/annual-standard/catalogue.json") - val subscription = - Fixtures.subscriptionFromJson("Migrations/SupporterPlus2023V1V2/annual-standard/subscription.json") - val invoicePreview = - Fixtures.invoiceListFromJson("Migrations/SupporterPlus2023V1V2/annual-standard/invoice-preview.json") - - // We are going to use this test to make the computation of the price data for supporter plus explicit - - // We are using this `.toOption.get` technique to go through the original for construct step by step - // By doing so we could get a runtime error while running the tests instead of a test framework error. - // In either case it's an error :) - - val ratePlan = SupporterPlus2023V1V2Migration.subscriptionRatePlan(subscription: ZuoraSubscription).toOption.get - assertEquals( - ratePlan, - ZuoraRatePlan( - "8a128432890171d1018914866bee0e7f", - "Supporter Plus", - "8a12865b8219d9b40182210618a464ba", - "Supporter Plus Annual", - List( - ZuoraRatePlanCharge( - productRatePlanChargeId = "8a12865b8219d9b40182210618c664c1", - name = "Supporter Plus Annual Charge", - number = "C-04417974", - currency = "USD", - price = Some(120.0), - billingPeriod = Some("Annual"), - chargedThroughDate = Some(LocalDate.of(2024, 7, 2)), - processedThroughDate = Some(LocalDate.of(2023, 7, 2)), - specificBillingPeriod = None, - endDateCondition = Some("Subscription_End"), - upToPeriodsType = None, - upToPeriods = None, - billingDay = Some("ChargeTriggerDay"), - triggerEvent = Some("CustomerAcceptance"), - triggerDate = None, - discountPercentage = None, - originalOrderDate = Some(LocalDate.of(2023, 7, 2)), - effectiveStartDate = Some(LocalDate.of(2023, 7, 2)), - effectiveEndDate = Some(LocalDate.of(2024, 7, 2)) - ) - ), - None - ) - ) - - val ratePlanCharges = - SupporterPlus2023V1V2Migration.subscriptionRatePlanCharges(subscription, ratePlan).toOption.get - assertEquals( - ratePlanCharges, - List( - ZuoraRatePlanCharge( - productRatePlanChargeId = "8a12865b8219d9b40182210618c664c1", - name = "Supporter Plus Annual Charge", - number = "C-04417974", - currency = "USD", - price = Some(120.0), - billingPeriod = Some("Annual"), - chargedThroughDate = Some(LocalDate.of(2024, 7, 2)), - processedThroughDate = Some(LocalDate.of(2023, 7, 2)), - specificBillingPeriod = None, - endDateCondition = Some("Subscription_End"), - upToPeriodsType = None, - upToPeriods = None, - billingDay = Some("ChargeTriggerDay"), - triggerEvent = Some("CustomerAcceptance"), - triggerDate = None, - discountPercentage = None, - originalOrderDate = Some(LocalDate.of(2023, 7, 2)), - effectiveStartDate = Some(LocalDate.of(2023, 7, 2)), - effectiveEndDate = Some(LocalDate.of(2024, 7, 2)) - ) - ) - ) - - val currency = ratePlanCharges.head.currency - assertEquals( - currency, - "USD" - ) - - val oldPrice = SupporterPlus2023V1V2Migration.getOldPrice(subscription, ratePlanCharges).toOption.get - assertEquals( - oldPrice, - BigDecimal(120) - ) - - val billingP = - SupporterPlus2023V1V2Migration - .billingPeriod(account, catalogue, subscription, invoicePreview, LocalDate.of(2024, 7, 2)) - .toOption - .get - assertEquals( - billingP, - "Annual" - ) - - val newPrice = SupporterPlus2023V1V2Migration.currencyToNewPrice(billingP, currency).toOption.get - assertEquals( - newPrice, - BigDecimal(120) - ) - - val priceData = - AmendmentData - .priceData(account, catalogue, subscription, invoicePreview, LocalDate.of(2024, 7, 2), cohortSpec) - .toOption - .get - assertEquals( - priceData, - PriceData(currency, 120, 120, "Annual") - ) - } - - test("priceData: is correct for SupporterPlus2023V1V2 (annual contribution)") { - - val cohortSpec = - CohortSpec("SupporterPlus2023V1V2", "Campaign1", LocalDate.of(2023, 7, 14), LocalDate.of(2023, 8, 21)) - - val account = Fixtures.accountFromJson("Migrations/SupporterPlus2023V1V2/annual-contribution/account.json") - val catalogue = - Fixtures.productCatalogueFromJson("Migrations/SupporterPlus2023V1V2/annual-contribution/catalogue.json") - val subscription = - Fixtures.subscriptionFromJson("Migrations/SupporterPlus2023V1V2/annual-contribution/subscription.json") - val invoicePreview = - Fixtures.invoiceListFromJson("Migrations/SupporterPlus2023V1V2/annual-contribution/invoice-preview.json") - - // We are going to use this test to make the computation of the price data for supporter plus explicit - - // We are using this `.toOption.get` technique to go through the original for construct step by step - // By doing so we could get a runtime error while running the tests instead of a test framework error. - // In either case it's an error :) - - val ratePlan = SupporterPlus2023V1V2Migration.subscriptionRatePlan(subscription: ZuoraSubscription).toOption.get - assertEquals( - ratePlan, - ZuoraRatePlan( - id = "8a12843288f6ded10188ff5fbef67bb3", - productName = "Supporter Plus", - productRatePlanId = "8a12865b8219d9b40182210618a464ba", - ratePlanName = "Supporter Plus Annual", - List( - ZuoraRatePlanCharge( - productRatePlanChargeId = "8a12865b8219d9b40182210618c664c1", - name = "Supporter Plus Annual Charge", - number = "C-04411538", - currency = "GBP", - price = Some(120.0), - billingPeriod = Some("Annual"), - chargedThroughDate = Some(LocalDate.of(2024, 6, 28)), - processedThroughDate = Some(LocalDate.of(2023, 6, 28)), - specificBillingPeriod = None, - endDateCondition = Some("Subscription_End"), - upToPeriodsType = None, - upToPeriods = None, - billingDay = Some("ChargeTriggerDay"), - triggerEvent = Some("CustomerAcceptance"), - triggerDate = None, - discountPercentage = None, - originalOrderDate = Some(LocalDate.of(2023, 6, 28)), - effectiveStartDate = Some(LocalDate.of(2023, 6, 28)), - effectiveEndDate = Some(LocalDate.of(2024, 6, 28)) - ) - ), - None - ) - ) - - val ratePlanCharges = - SupporterPlus2023V1V2Migration.subscriptionRatePlanCharges(subscription, ratePlan).toOption.get - assertEquals( - ratePlanCharges, - List( - ZuoraRatePlanCharge( - productRatePlanChargeId = "8a12865b8219d9b40182210618c664c1", - name = "Supporter Plus Annual Charge", - number = "C-04411538", - currency = "GBP", - price = Some(120.0), - billingPeriod = Some("Annual"), - chargedThroughDate = Some(LocalDate.of(2024, 6, 28)), - processedThroughDate = Some(LocalDate.of(2023, 6, 28)), - specificBillingPeriod = None, - endDateCondition = Some("Subscription_End"), - upToPeriodsType = None, - upToPeriods = None, - billingDay = Some("ChargeTriggerDay"), - triggerEvent = Some("CustomerAcceptance"), - triggerDate = None, - discountPercentage = None, - originalOrderDate = Some(LocalDate.of(2023, 6, 28)), - effectiveStartDate = Some(LocalDate.of(2023, 6, 28)), - effectiveEndDate = Some(LocalDate.of(2024, 6, 28)) - ) - ) - ) - - val currency = ratePlanCharges.head.currency - assertEquals( - currency, - "GBP" - ) - - val oldPrice = SupporterPlus2023V1V2Migration.getOldPrice(subscription, ratePlanCharges).toOption.get - assertEquals( - oldPrice, - BigDecimal(120) - ) - - val billingP = - SupporterPlus2023V1V2Migration - .billingPeriod(account, catalogue, subscription, invoicePreview, LocalDate.of(2024, 6, 28)) - .toOption - .get - assertEquals( - billingP, - "Annual" - ) - - val newPrice = SupporterPlus2023V1V2Migration.currencyToNewPrice(billingP, currency).toOption.get - assertEquals( - newPrice, - BigDecimal(95) - ) - - val priceData = - AmendmentData - .priceData(account, catalogue, subscription, invoicePreview, LocalDate.of(2024, 6, 28), cohortSpec) - .toOption - .get - assertEquals( - priceData, - PriceData(currency, 120, 95, "Annual") - ) - } } From 95fbd4bff4443bb2d8407855dbf53baef2986155 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pascal=20Honor=C3=A9?= Date: Sat, 21 Sep 2024 14:18:37 +0100 Subject: [PATCH 2/2] remove test fixtures --- .../annual-contribution/account.json | 57 - .../annual-contribution/catalogue.json | 14201 ---------------- .../annual-contribution/invoice-preview.json | 25 - .../annual-contribution/subscription.json | 162 - .../annual-standard/account.json | 47 - .../annual-standard/catalogue.json | 14191 --------------- .../annual-standard/invoice-preview.json | 25 - .../annual-standard/subscription.json | 159 - .../monthly-contribution/account.json | 57 - .../monthly-contribution/catalogue.json | 14201 ---------------- .../monthly-contribution/invoice-preview.json | 245 - .../monthly-contribution/subscription.json | 162 - .../monthly-standard/account.json | 46 - .../monthly-standard/catalogue.json | 14201 ---------------- .../monthly-standard/invoice-preview.json | 245 - .../monthly-standard/subscription.json | 240 - .../z-monthly-extra-case-1/account.json | 46 - .../z-monthly-extra-case-1/catalogue.json | 14201 ---------------- .../invoice-preview.json | 245 - .../z-monthly-extra-case-1/subscription.json | 240 - 20 files changed, 72996 deletions(-) delete mode 100644 lambda/src/test/resources/Migrations/SupporterPlus2023V1V2/annual-contribution/account.json delete mode 100644 lambda/src/test/resources/Migrations/SupporterPlus2023V1V2/annual-contribution/catalogue.json delete mode 100644 lambda/src/test/resources/Migrations/SupporterPlus2023V1V2/annual-contribution/invoice-preview.json delete mode 100644 lambda/src/test/resources/Migrations/SupporterPlus2023V1V2/annual-contribution/subscription.json delete mode 100644 lambda/src/test/resources/Migrations/SupporterPlus2023V1V2/annual-standard/account.json delete mode 100644 lambda/src/test/resources/Migrations/SupporterPlus2023V1V2/annual-standard/catalogue.json delete mode 100644 lambda/src/test/resources/Migrations/SupporterPlus2023V1V2/annual-standard/invoice-preview.json delete mode 100644 lambda/src/test/resources/Migrations/SupporterPlus2023V1V2/annual-standard/subscription.json delete mode 100644 lambda/src/test/resources/Migrations/SupporterPlus2023V1V2/monthly-contribution/account.json delete mode 100644 lambda/src/test/resources/Migrations/SupporterPlus2023V1V2/monthly-contribution/catalogue.json delete mode 100644 lambda/src/test/resources/Migrations/SupporterPlus2023V1V2/monthly-contribution/invoice-preview.json delete mode 100644 lambda/src/test/resources/Migrations/SupporterPlus2023V1V2/monthly-contribution/subscription.json delete mode 100644 lambda/src/test/resources/Migrations/SupporterPlus2023V1V2/monthly-standard/account.json delete mode 100644 lambda/src/test/resources/Migrations/SupporterPlus2023V1V2/monthly-standard/catalogue.json delete mode 100644 lambda/src/test/resources/Migrations/SupporterPlus2023V1V2/monthly-standard/invoice-preview.json delete mode 100644 lambda/src/test/resources/Migrations/SupporterPlus2023V1V2/monthly-standard/subscription.json delete mode 100644 lambda/src/test/resources/Migrations/SupporterPlus2023V1V2/z-monthly-extra-case-1/account.json delete mode 100644 lambda/src/test/resources/Migrations/SupporterPlus2023V1V2/z-monthly-extra-case-1/catalogue.json delete mode 100644 lambda/src/test/resources/Migrations/SupporterPlus2023V1V2/z-monthly-extra-case-1/invoice-preview.json delete mode 100644 lambda/src/test/resources/Migrations/SupporterPlus2023V1V2/z-monthly-extra-case-1/subscription.json diff --git a/lambda/src/test/resources/Migrations/SupporterPlus2023V1V2/annual-contribution/account.json b/lambda/src/test/resources/Migrations/SupporterPlus2023V1V2/annual-contribution/account.json deleted file mode 100644 index 96ba1b8f..00000000 --- a/lambda/src/test/resources/Migrations/SupporterPlus2023V1V2/annual-contribution/account.json +++ /dev/null @@ -1,57 +0,0 @@ -{ - "basicInfo" : { - "id" : "ACCOUNT-ID", - "name" : "ACCOUNT-NAME", - "accountNumber" : "ACCOUNT-NUMBER", - "notes" : null, - "status" : "Active", - "crmId" : "ACCOUNT-NAME", - "batch" : "Batch1", - "invoiceTemplateId" : "2c92a0fb49377eae014951ca848e074b", - "communicationProfileId" : null, - "purchaseOrderNumber" : null, - "customerServiceRepName" : null, - "IdentityId__c" : "IDENTITY-ID-C", - "sfContactId__c" : "SF-CONTACT-ID-C", - "CCURN__c" : null, - "SpecialDeliveryInstructions__c" : null, - "NonStandardDataReason__c" : null, - "ProcessingAdvice__c" : "NoAdvice", - "CreatedRequestId__c" : "a8998131-0e83-202d-0000-00000002000a", - "RetryStatus__c" : null, - "salesRep" : null, - "sequenceSetId" : null - }, - "billingAndPayment" : { - "billCycleDay" : 28, - "currency" : "GBP", - "paymentTerm" : "Due Upon Receipt", - "paymentGateway" : "GoCardless", - "defaultPaymentMethodId" : "8a12843288f6ded10188ff5fbe9f7bac", - "invoiceDeliveryPrefsPrint" : false, - "invoiceDeliveryPrefsEmail" : false, - "autoPay" : true, - "additionalEmailAddresses" : [ ] - }, - "metrics" : { - "balance" : 0.000000000, - "totalInvoiceBalance" : 0.000000000, - "creditBalance" : 0.000000000, - "contractedMrr" : 10.000000000 - }, - "billToContact" : null, - "soldToContact" : null, - "taxInfo" : { - "exemptStatus" : "No", - "exemptCertificateId" : null, - "exemptCertificateType" : null, - "exemptIssuingJurisdiction" : null, - "exemptEffectiveDate" : null, - "exemptExpirationDate" : null, - "exemptDescription" : null, - "exemptEntityUseCode" : null, - "companyCode" : null, - "VATId" : null - }, - "success" : true -} \ No newline at end of file diff --git a/lambda/src/test/resources/Migrations/SupporterPlus2023V1V2/annual-contribution/catalogue.json b/lambda/src/test/resources/Migrations/SupporterPlus2023V1V2/annual-contribution/catalogue.json deleted file mode 100644 index f44dbf58..00000000 --- a/lambda/src/test/resources/Migrations/SupporterPlus2023V1V2/annual-contribution/catalogue.json +++ /dev/null @@ -1,14201 +0,0 @@ -{ - "products" : [ { - "id" : "2c92a0fb4bb97034014bbbc561fa4fed", - "sku" : "SKU-00000013", - "name" : "Supporter", - "description" : "This is the description of the supporter membership.", - "category" : null, - "effectiveStartDate" : "2014-01-01", - "effectiveEndDate" : "2099-01-01", - "productNumber" : null, - "allowFeatureChanges" : false, - "ProductEnabled__c" : "True", - "Entitlements__c" : "Events:SUPPORTER", - "AcquisitionProfile__c" : "Paid", - "ProductType__c" : "Membership", - "ProductLevel__c" : "400", - "Tier__c" : "Supporter", - "productRatePlans" : [ { - "id" : "8a129ce886834fa90186a20c3ee70b6a", - "status" : "Active", - "name" : "Supporter - annual (2023 Price)", - "description" : "", - "effectiveStartDate" : "2023-03-01", - "effectiveEndDate" : "2099-01-01", - "TermType__c" : "TERMED", - "FrontendId__c" : "Yearly", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A104", - "externalIdSourceSystem" : "", - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "8a129ce886834fa90186a20c3f4f0b6c", - "name" : "Supporter Membership - Annual", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD120", "EUR95", "GBP75", "CAD120", "AUD160" ], - "pricing" : [ { - "currency" : "USD", - "price" : 120.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 95.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 75.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 120.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 160.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Annual", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : true, - "taxCode" : "Membership Global Tax", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1020", - "ProductType__c" : "Supporter", - "triggerEvent" : "ContractEffective", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Supporter", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Membership - Supporter", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "8a1287c586832d250186a2040b1548fe", - "status" : "Active", - "name" : "Supporter - monthly (2023 Price)", - "description" : "", - "effectiveStartDate" : "2023-03-01", - "effectiveEndDate" : "2099-01-01", - "TermType__c" : "TERMED", - "FrontendId__c" : "Monthly", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A101", - "externalIdSourceSystem" : "", - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "8a12800986832d1d0186a20bf5136471", - "name" : "Supporter Membership - Monthly", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD9.99", "EUR9.99", "GBP7", "CAD12.99", "AUD14.99" ], - "pricing" : [ { - "currency" : "USD", - "price" : 9.990000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 9.990000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 7.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 12.990000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 14.990000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : true, - "taxCode" : "Membership Global Tax", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1020", - "ProductType__c" : "Supporter", - "triggerEvent" : "ContractEffective", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Supporter", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Membership - Supporter", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fb4c5481db014c69f4a1e03bbd", - "status" : "Expired", - "name" : "Non Founder Supporter - annual", - "description" : "", - "effectiveStartDate" : "2015-03-31", - "effectiveEndDate" : "2023-03-02", - "TermType__c" : null, - "FrontendId__c" : "Yearly", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A104", - "externalIdSourceSystem" : "", - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fb4c5481db014c69f4a2013bbf", - "name" : "Supporter Membership - Annual", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD69", "EUR49", "GBP49", "CAD69", "AUD100" ], - "pricing" : [ { - "currency" : "USD", - "price" : 69.000000000, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 49.000000000, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 49.000000000, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 69.000000000, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 100.000000000, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Annual", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Membership Global Tax", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1020", - "ProductType__c" : "Supporter", - "triggerEvent" : "ContractEffective", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Supporter", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Membership - Supporter", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fb4bb97034014bbbc562604ff7", - "status" : "Expired", - "name" : "Supporter - annual", - "description" : "", - "effectiveStartDate" : "2014-01-01", - "effectiveEndDate" : "2015-05-02", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A104", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fb4bb97034014bbbc5626f4ff9", - "name" : "Supporter Membership - Annual", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP50" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 50.000000000, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Annual", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Membership Global Tax", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1020", - "ProductType__c" : "Supporter", - "triggerEvent" : "ContractEffective", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Supporter", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Membership - Supporter", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fb4bb97034014bbbc562114fef", - "status" : "Expired", - "name" : "Supporter - monthly", - "description" : "", - "effectiveStartDate" : "2014-01-01", - "effectiveEndDate" : "2015-05-02", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A101", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fb4bb97034014bbbc562274ff1", - "name" : "Supporter Membership - Monthly", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP5" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 5.000000000, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Membership Global Tax", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1020", - "ProductType__c" : "Supporter", - "triggerEvent" : "ContractEffective", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Supporter", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Membership - Supporter", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0f94c547592014c69f5b0ff4f7e", - "status" : "Expired", - "name" : "Non Founder Supporter - monthly", - "description" : "", - "effectiveStartDate" : "2015-03-31", - "effectiveEndDate" : "2023-03-02", - "TermType__c" : null, - "FrontendId__c" : "Monthly", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A101", - "externalIdSourceSystem" : "", - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0f94c547592014c69f5b1204f80", - "name" : "Supporter Membership - Monthly", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD6.99", "EUR4.99", "GBP5", "CAD6.99", "AUD10" ], - "pricing" : [ { - "currency" : "USD", - "price" : 6.990000000, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 4.990000000, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 5.000000000, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 6.990000000, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 10.000000000, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Membership Global Tax", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1020", - "ProductType__c" : "Supporter", - "triggerEvent" : "ContractEffective", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Supporter", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Membership - Supporter", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - } ], - "productFeatures" : [ ] - }, { - "id" : "2c92a0ff5345f9200153559c6d2a3385", - "sku" : "ABC-00000012", - "name" : "Discounts", - "description" : "Template discount rate plans", - "category" : null, - "effectiveStartDate" : "2007-03-08", - "effectiveEndDate" : "2099-03-08", - "productNumber" : null, - "allowFeatureChanges" : false, - "ProductEnabled__c" : null, - "Entitlements__c" : null, - "AcquisitionProfile__c" : null, - "ProductType__c" : null, - "ProductLevel__c" : null, - "Tier__c" : null, - "productRatePlans" : [ { - "id" : "8a128432880a889f01880f873d2b1b7a", - "status" : "Active", - "name" : "PM 2023 - AUD - Price Freeze - 3 months", - "description" : "", - "effectiveStartDate" : "2023-05-12", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : null, - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : null, - "externalIdSourceSystem" : "", - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "8a12989f880a9e8001880f8836a32b33", - "name" : "PM 2023 - AUD - Price Freeze - 3 months", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "0% discount", "33.29% discount" ], - "pricing" : [ { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 33.290000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 3, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : null, - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : "PRP-00000004" - }, { - "id" : "8a1290f1880a9e7401880f834fb70bce", - "status" : "Active", - "name" : "PM 2023 - CAD - Price Freeze - 3 months", - "description" : "", - "effectiveStartDate" : "2023-05-12", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : null, - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : null, - "externalIdSourceSystem" : "", - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "8a12921d880a9e7901880f841d0a5c71", - "name" : "PM 2023 - CAD - Price Freeze - 3 months", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "0% discount", "46.19% discount" ], - "pricing" : [ { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 46.190000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 3, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : null, - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : "PRP-00000003" - }, { - "id" : "8a1282d4880a889501880f817b9d5c7a", - "status" : "Active", - "name" : " PM 2023 - EUR - Price Freeze - 3 months", - "description" : "", - "effectiveStartDate" : "2023-05-12", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : null, - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : null, - "externalIdSourceSystem" : "", - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "8a128cd5880a888f01880f8229e17ceb", - "name" : " PM 2023 - EUR - Price Freeze - 3 months", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "50.5% discount", "0% discount" ], - "pricing" : [ { - "currency" : "EUR", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 50.500000000, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 3, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : null, - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : "PRP-00000002" - }, { - "id" : "8a12867b880a888901880f7f007913f6", - "status" : "Active", - "name" : "PM 2023 - USD - Price Freeze - 3 months", - "description" : "", - "effectiveStartDate" : "2023-05-12", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : null, - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : null, - "externalIdSourceSystem" : "", - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "8a129e06880a9e7c01880f7fe5ec4d06", - "name" : "PM 2023 - USD - Price Freeze - 3 months", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "30.03% discount", "0% discount" ], - "pricing" : [ { - "currency" : "USD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 30.030000000, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 3, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : null, - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : "PRP-00000001" - }, { - "id" : "8a1297638021d0d7018022d4bb3342c2", - "status" : "Active", - "name" : "PM 2022 - 13% off for 3 months - Freeze", - "description" : null, - "effectiveStartDate" : "2022-04-13", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "8a1291128021d0cf018022d4bda76fdb", - "name" : "PM 2022 - 13% off for 3 months - Freeze", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "13% discount", "13% discount", "13% discount", "13% discount", "13% discount", "13% discount" ], - "pricing" : [ { - "currency" : "USD", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 13.000000000, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 13.000000000, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 13.000000000, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 13.000000000, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 13.000000000, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 13.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 3, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : null, - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "8a12972d8021d0d3018022d4c2a36f0c", - "status" : "Active", - "name" : "PM 2022 - 18% off for 3 months - Freeze", - "description" : null, - "effectiveStartDate" : "2022-04-13", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "8a128aa88021da2d018022d4c4f06176", - "name" : "PM 2022 - 18% off for 3 months - Freeze", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "18% discount", "18% discount", "18% discount", "18% discount", "18% discount", "18% discount" ], - "pricing" : [ { - "currency" : "USD", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 18.000000000, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 18.000000000, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 18.000000000, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 18.000000000, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 18.000000000, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 18.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 3, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : null, - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "8a1295918021d0d2018022d4ca0c4aac", - "status" : "Active", - "name" : "PM 2022 - 25% off for 3 months - Freeze", - "description" : null, - "effectiveStartDate" : "2022-04-13", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "8a1295918021d0d2018022d4cb8e4ab6", - "name" : "PM 2022 - 25% off for 3 months - Freeze", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "25% discount" ], - "pricing" : [ { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 25.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 3, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : null, - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "8a128f138021d0d6018022d4c65b0384", - "status" : "Active", - "name" : "PM 2022 - 20% off for 3 months - Freeze", - "description" : null, - "effectiveStartDate" : "2022-04-13", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "8a129f6f8021d0d4018022d4c84f5545", - "name" : "PM 2022 - 20% off for 3 months - Freeze", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "20% discount" ], - "pricing" : [ { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 20.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 3, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : null, - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "8a128eda8021d0d4018022d4af5e4318", - "status" : "Active", - "name" : "PM 2022 - 7% off for 3 months - Freeze", - "description" : null, - "effectiveStartDate" : "2022-04-13", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "8a128ed88021d0e0018022d4b17e7570", - "name" : "PM 2022 - 7% off for 3 months - Freeze", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "7% discount" ], - "pricing" : [ { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 7.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 3, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : null, - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "8a128eda8021d0d4018022d4aab842f9", - "status" : "Active", - "name" : "PM 2022 - 6% off for 3 months - Freeze", - "description" : null, - "effectiveStartDate" : "2022-04-13", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "8a12972d8021d0d3018022d4ad3c6db1", - "name" : "PM 2022 - 6% off for 3 months - Freeze", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "6% discount" ], - "pricing" : [ { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 6.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 3, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : null, - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "8a128e2d8021d0d4018022d4bf72421e", - "status" : "Active", - "name" : "PM 2022 - 17% off for 3 months - Freeze", - "description" : null, - "effectiveStartDate" : "2022-04-13", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "8a1291128021d0cf018022d4c126703b", - "name" : "PM 2022 - 17% off for 3 months - Freeze", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "17% discount" ], - "pricing" : [ { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 17.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 3, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : null, - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "8a128aa88021da2d018022d4b38b613e", - "status" : "Active", - "name" : "PM 2022 - 8% off for 3 months - Freeze", - "description" : null, - "effectiveStartDate" : "2022-04-13", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "8a128b618021d0cf018022d4b554090b", - "name" : "PM 2022 - 8% off for 3 months - Freeze", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "8% discount", "8% discount", "8% discount", "8% discount", "8% discount", "8% discount" ], - "pricing" : [ { - "currency" : "USD", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 8.000000000, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 8.000000000, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 8.000000000, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 8.000000000, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 8.000000000, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 8.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 3, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : null, - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "8a128aa88021da2d018022d4a6856101", - "status" : "Active", - "name" : "PM 2022 - 5% off for 3 months - Freeze", - "description" : null, - "effectiveStartDate" : "2022-04-13", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "8a1295918021d0d2018022d4a8784983", - "name" : "PM 2022 - 5% off for 3 months - Freeze", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "5% discount" ], - "pricing" : [ { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 5.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 3, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : null, - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "8a12892d8021d0dc018022d4b6f94f05", - "status" : "Active", - "name" : "PM 2022 - 11% off for 3 months - Freeze", - "description" : null, - "effectiveStartDate" : "2022-04-13", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "8a128eda8021d0d4018022d4b9024332", - "name" : "PM 2022 - 11% off for 3 months - Freeze", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "11% discount" ], - "pricing" : [ { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 11.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 3, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : null, - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "8a12865b8021d0d9018022d2a2e52c74", - "status" : "Active", - "name" : "PM 2022 - 10% off for 12 months - Max Discount", - "description" : null, - "effectiveStartDate" : "2022-04-13", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "8a1295258021d0d3018022d2b4251038", - "name" : "PM 2022 - 10% off for 12 months - Max Discount", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "10% discount", "10% discount", "10% discount", "10% discount", "10% discount", "10% discount" ], - "pricing" : [ { - "currency" : "USD", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 10.000000000, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 10.000000000, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 10.000000000, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 10.000000000, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 10.000000000, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 10.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 12, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : null, - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "8a12801c8021d0e8018022d4a1815301", - "status" : "Active", - "name" : "PM 2022 - 4% off for 3 months - Freeze", - "description" : null, - "effectiveStartDate" : "2022-04-13", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "8a129b9c8021d0d2018022d4a4417880", - "name" : "PM 2022 - 4% off for 3 months - Freeze", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "4% discount" ], - "pricing" : [ { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 4.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 3, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : null, - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0ff74296d7201742b7daf20123d", - "status" : "Active", - "name" : "Digipack Acq Offer - 1st Payment", - "description" : "a percentage discount on Annual Digipack subscriptions, where the percentage is dependent on the billing currency. This discount is available so that our Customer Service Reps are able to provide the same level of discounting as is available on the website, to subscriptions acquired through the call centre", - "effectiveStartDate" : "2020-08-27", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : null, - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0ff74296d7201742b7daf2f123f", - "name" : "Digipack Acq Offer - 1st Payment", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "17.09% discount", "25.53% discount", "16.11% discount", "16.81% discount", "20.09% discount", "18.61% discount" ], - "pricing" : [ { - "currency" : "USD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 17.090000000, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 25.530000000, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 16.110000000, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 16.810000000, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 20.090000000, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 18.610000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 12, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0ff65c757150165c8eab88b788e", - "status" : "Expired", - "name" : "Home Delivery Adjustment charge", - "description" : "Call centre version", - "effectiveStartDate" : "2018-09-11", - "effectiveEndDate" : "2019-09-11", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0ff65c757150165c8eab8c07896", - "name" : "Adjustment charge", - "type" : "OneTime", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP0" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "One_Time", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : null, - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : null, - "billingPeriodAlignment" : null, - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : null, - "taxable" : false, - "taxCode" : "", - "taxMode" : null, - "ProductCode__c" : "P1299", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Home Delivery", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Home Delivery", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0ff64176cd40164232c8ec97661", - "status" : "Active", - "name" : "Cancellation Save Discount - 25% off for 3 months", - "description" : "", - "effectiveStartDate" : "2018-06-22", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0ff64176cd40164232c8eda7664", - "name" : "25% discount on subscription for 3 months", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "25% discount", "25% discount", "25% discount", "25% discount", "25% discount", "25% discount" ], - "pricing" : [ { - "currency" : "USD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 25.000000000, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 25.000000000, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 25.000000000, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 25.000000000, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 25.000000000, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 25.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 3, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0ff5e09bd67015e0a93efe86d2e", - "status" : "Active", - "name" : "Customer Experience Adjustment - Voucher", - "description" : "", - "effectiveStartDate" : "2016-08-01", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : "TERMED", - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0ff5e09bd67015e0a93f0026d34", - "name" : "Adjustment charge", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP0" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "DefaultFromCustomer", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : "", - "taxMode" : null, - "ProductCode__c" : "P1299", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Voucher Book", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Voucher Book", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0ff56fe33f301572314aed277fb", - "status" : "Active", - "name" : "Percentage Adjustment", - "description" : "", - "effectiveStartDate" : "2007-09-13", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fc56fe26ba01572315d66d026e", - "name" : "Adjustment charge", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "100% discount" ], - "pricing" : [ { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 100.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "DefaultFromCustomer", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : true, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Home Delivery", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Home Delivery", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0ff5345f9220153559d915d5c26", - "status" : "Active", - "name" : "Percentage", - "description" : "", - "effectiveStartDate" : "2007-03-08", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : null, - "RatePlanType__c" : "Promotion", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fd5345efa10153559e97bb76c6", - "name" : "Percentage", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "0% discount", "0% discount", "0% discount", "0% discount", "0% discount", "0% discount" ], - "pricing" : [ { - "currency" : "USD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "DefaultFromCustomer", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : null, - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fe750b35d001750d4522f43817", - "status" : "Active", - "name" : "DO NOT USE MANUALLY: Holiday credit - automated - Digital Voucher", - "description" : "Holiday credit applied automatically by the Holiday Stop Processor.\n\n*** Not for manual use! ***\n\nSee:\nhttps://github.com/guardian/support-service-lambdas/tree/master/handlers/holiday-stop-processor\n", - "effectiveStartDate" : "2020-09-14", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fe750b35d001750d4523103819", - "name" : "Holiday Credit", - "type" : "OneTime", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD0", "NZD0", "EUR0", "GBP0", "CAD0", "AUD0" ], - "pricing" : [ { - "currency" : "USD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "One_Time", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : null, - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : null, - "billingPeriodAlignment" : null, - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : null, - "taxable" : false, - "taxCode" : "Guardian Weekly", - "taxMode" : null, - "ProductCode__c" : "P1299", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fe7375d60901737c64808e4be1", - "status" : "Active", - "name" : "DO NOT USE MANUALLY: Delivery-problem credit - automated - Home Delivery", - "description" : "Credit for a delivery problem, applied automatically by the delivery-problem credit processor.\n\n*** Not for manual use! ***\n\nSee:\nTODO - reference to codebase here\n", - "effectiveStartDate" : "2020-01-13", - "effectiveEndDate" : "2099-01-01", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fe7375d60901737c6480bc4be3", - "name" : "Delivery-problem credit", - "type" : "OneTime", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD0", "NZD0", "EUR0", "GBP0", "CAD0", "AUD0" ], - "pricing" : [ { - "currency" : "USD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "One_Time", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : null, - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : null, - "billingPeriodAlignment" : null, - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : null, - "taxable" : false, - "taxCode" : "Guardian Weekly", - "taxMode" : null, - "ProductCode__c" : "P1299", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Home Delivery", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Home Delivery", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fe72c5c3480172c7f1fb545f81", - "status" : "Active", - "name" : "PM 2020 - 11% off for 3 months - Sunday Freeze", - "description" : "", - "effectiveStartDate" : "2020-06-29", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : null, - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fe72c5c3480172c7f1fb7f5f87", - "name" : "PM 2020 - 11% off for 3 months - Sunday Freeze", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "11% discount" ], - "pricing" : [ { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 11.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 3, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fe65f0ac1f0165f2189bca248c", - "status" : "Active", - "name" : "Digipack Discount - 20% off for 12 months", - "description" : "", - "effectiveStartDate" : "2018-06-22", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : null, - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fe65f0ac1f0165f2189bdf248f", - "name" : "20% discount on subscription for 12 months", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "20% discount", "20% discount", "20% discount", "20% discount", "20% discount", "20% discount" ], - "pricing" : [ { - "currency" : "USD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 20.000000000, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 20.000000000, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 20.000000000, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 20.000000000, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 20.000000000, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 20.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 12, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fe62b7edde0162dd29b8124a8e", - "status" : "Active", - "name" : "Guardian Weekly Adjustment charge", - "description" : "To fix premature refunds", - "effectiveStartDate" : "2018-04-19", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fe62b7edde0162dd29b83f4a9e", - "name" : "Adjustment charge", - "type" : "OneTime", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD0", "NZD0", "EUR0", "GBP0", "CAD0", "AUD0" ], - "pricing" : [ { - "currency" : "USD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "One_Time", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : null, - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : null, - "billingPeriodAlignment" : null, - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : null, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "Adjustment for premature refunds where the product was not removed in advance.", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fe5fe26834015fe33c70a24f50", - "status" : "Active", - "name" : "Black Friday 50% for 3 months for existing customers", - "description" : "", - "effectiveStartDate" : "2007-03-08", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : null, - "RatePlanType__c" : "Promotion", - "PromotionCode__c" : "TBC", - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fe5fe26834015fe33c70b74f52", - "name" : "Percentage", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "0% discount", "0% discount", "0% discount", "50% discount", "0% discount", "0% discount" ], - "pricing" : [ { - "currency" : "USD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 50.000000000, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 3, - "upToPeriodsType" : "Months", - "billingDay" : "DefaultFromCustomer", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : null, - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fe56fe33ff015723143e4778be", - "status" : "Active", - "name" : "Fixed Adjustment", - "description" : "", - "effectiveStartDate" : "2007-09-13", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0ff576f2f760157aec73aa34ccc", - "name" : "Adjustment charge", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP0" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "DefaultFromCustomer", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : false, - "taxCode" : "", - "taxMode" : null, - "ProductCode__c" : "P1299", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize upon invoicing", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Home Delivery", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Home Delivery", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fd6f1426ef016f18a86c515ed7", - "status" : "Active", - "name" : "Cancellation Save Discount - 20% off for 12 months", - "description" : "", - "effectiveStartDate" : "2019-12-18", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fd6f1426ef016f18a86c705ed9", - "name" : "20% discount on subscription for 12 months", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "25% discount", "25% discount", "25% discount", "20% discount", "25% discount", "25% discount" ], - "pricing" : [ { - "currency" : "USD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 25.000000000, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 25.000000000, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 25.000000000, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 20.000000000, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 25.000000000, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 25.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 12, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fc6ae918b6016b080950e96d75", - "status" : "Active", - "name" : "Guardian Weekly Holiday Credit", - "description" : "", - "effectiveStartDate" : "2019-05-30", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fc6ae918b6016b0809512f6d7f", - "name" : "Holiday Credit", - "type" : "Usage", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD0", "NZD0", "EUR0", "GBP0", "CAD0", "AUD0" ], - "pricing" : [ { - "currency" : "USD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 1, - "upToPeriodsType" : "Billing_Periods", - "billingDay" : "DefaultFromCustomer", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : "ByBillingPeriod", - "billingPeriod" : "Annual", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fc610e738901612d83fce461fd", - "status" : "Expired", - "name" : "Tabloid launch 25% off for one year for existing customers", - "description" : "", - "effectiveStartDate" : "2017-12-19", - "effectiveEndDate" : "2020-12-19", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : "GTL99C", - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fc610e738901612d85acb06a73", - "name" : "Percentage", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "25% discount" ], - "pricing" : [ { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 25.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 12, - "upToPeriodsType" : "Months", - "billingDay" : "DefaultFromCustomer", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : null, - "triggerEvent" : "CustomerAcceptance", - "description" : "25% off for one year", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fc5b42d2c9015b6259f7f40040", - "status" : "Expired", - "name" : "Guardian Weekly Holiday Credit - old", - "description" : "", - "effectiveStartDate" : "2007-08-18", - "effectiveEndDate" : "2019-05-29", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a00e6ad50f58016ad9ca59962c8c", - "name" : "Holiday Credit", - "type" : "OneTime", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD0", "NZD0", "EUR0", "GBP0", "CAD0", "AUD0" ], - "pricing" : [ { - "currency" : "USD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "One_Time", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : null, - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : null, - "billingPeriodAlignment" : null, - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : null, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a0ff5b42e3ad015b627c142f072a", - "name" : "Holiday Credit", - "type" : "Usage", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD0", "NZD0", "EUR0", "GBP0", "CAD0", "AUD0" ], - "pricing" : [ { - "currency" : "USD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 1, - "upToPeriodsType" : "Billing_Periods", - "billingDay" : "DefaultFromCustomer", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : "ByBillingPeriod", - "billingPeriod" : "Annual", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fc596d31ea01598d623a297897", - "status" : "Active", - "name" : "Home Delivery Holiday Credit v2", - "description" : "", - "effectiveStartDate" : "2007-08-18", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fc596d31ea01598d72baf33417", - "name" : "Holiday Credit", - "type" : "Usage", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP0" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "DefaultFromCustomer", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : "ByBillingPeriod", - "billingPeriod" : "Annual", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : false, - "taxCode" : "", - "taxMode" : null, - "ProductCode__c" : "P1299", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Home Delivery", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Home Delivery", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fc569c311201569dfbecb4215f", - "status" : "Expired", - "name" : "Home Delivery Holiday Credit", - "description" : "Call centre version", - "effectiveStartDate" : "2007-08-18", - "effectiveEndDate" : "2017-07-31", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fe569c441901569e03b5cc619e", - "name" : "Holiday Credit", - "type" : "OneTime", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP0" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "One_Time", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : null, - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : null, - "billingPeriodAlignment" : null, - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : null, - "taxable" : false, - "taxCode" : "", - "taxMode" : null, - "ProductCode__c" : "P1299", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Home Delivery", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Home Delivery", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0117468816901748bdb3a8c1ac4", - "status" : "Active", - "name" : "DO NOT USE MANUALLY: Holiday credit - automated - Voucher", - "description" : "Holiday credit applied automatically by the Holiday Stop Processor.\n\n*** Not for manual use! ***\n\nSee:\nhttps://github.com/guardian/support-service-lambdas/tree/master/handlers/holiday-stop-processor\n", - "effectiveStartDate" : "2020-09-14", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0117468816901748bdb3aab1ac6", - "name" : "Holiday Credit", - "type" : "OneTime", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD0", "NZD0", "EUR0", "GBP0", "CAD0", "AUD0" ], - "pricing" : [ { - "currency" : "USD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "One_Time", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : null, - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : null, - "billingPeriodAlignment" : null, - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : null, - "taxable" : false, - "taxCode" : "Guardian Weekly", - "taxMode" : null, - "ProductCode__c" : "P1299", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Voucher Book", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Voucher Book", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a01072c5c2e30172c7f0764772c9", - "status" : "Active", - "name" : "PM 2020 - 6% off for 3 months - Weekend Freeze", - "description" : "", - "effectiveStartDate" : "2020-06-29", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : null, - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a01072c5c2e30172c7f0766372cb", - "name" : "PM 2020 - 6% off for 3 months - Weekend Freeze", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "6% discount" ], - "pricing" : [ { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 6.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 3, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a01072c5c2e20172c7efe01125c6", - "status" : "Active", - "name" : "PM 2020 - 9% off for 3 months - Sixday Freeze", - "description" : "", - "effectiveStartDate" : "2020-06-29", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : null, - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a01072c5c2e20172c7efe02325ca", - "name" : "PM 2020 - 9% off for 3 months - Sixday Freeze", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "9% discount" ], - "pricing" : [ { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 9.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 3, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a01072c5c2e20172c7ee96b91a7c", - "status" : "Active", - "name" : "PM 2020 - 11% off for 3 months - Everyday Freeze", - "description" : "", - "effectiveStartDate" : "2020-06-29", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : null, - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a01072c5c2e20172c7ee96e71a7e", - "name" : "PM 2020 - 11% off for 3 months - Everyday Freeze", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "11% discount" ], - "pricing" : [ { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 11.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 3, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a00f7468817d01748bd88f0d1d6c", - "status" : "Active", - "name" : "DO NOT USE MANUALLY: Holiday credit - automated - Home Delivery", - "description" : "Holiday credit applied automatically by the Holiday Stop Processor.\n\n*** Not for manual use! ***\n\nSee:\nhttps://github.com/guardian/support-service-lambdas/tree/master/handlers/holiday-stop-processor\n", - "effectiveStartDate" : "2020-09-14", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a00f7468817d01748bd88f2e1d6e", - "name" : "Holiday Credit", - "type" : "OneTime", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD0", "NZD0", "EUR0", "GBP0", "CAD0", "AUD0" ], - "pricing" : [ { - "currency" : "USD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "One_Time", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : null, - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : null, - "billingPeriodAlignment" : null, - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : null, - "taxable" : false, - "taxCode" : "Guardian Weekly", - "taxMode" : null, - "ProductCode__c" : "P1299", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Home Delivery", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Home Delivery", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a00d6f9de7f6016f9f6f52765aa4", - "status" : "Active", - "name" : "DO NOT USE MANUALLY: Delivery-problem credit - automated - GW", - "description" : "Credit for a delivery problem, applied automatically by the delivery-problem credit processor.\n\n*** Not for manual use! ***\n\nSee:\nTODO - reference to codebase here\n", - "effectiveStartDate" : "2020-01-13", - "effectiveEndDate" : "2099-01-01", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a00d6f9de7f6016f9f6f529e5aaf", - "name" : "Delivery-problem credit", - "type" : "OneTime", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD0", "NZD0", "EUR0", "GBP0", "CAD0", "AUD0" ], - "pricing" : [ { - "currency" : "USD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "One_Time", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : null, - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : null, - "billingPeriodAlignment" : null, - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : null, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a00872c5d4770172c7f140a32d62", - "status" : "Active", - "name" : "PM 2020 - 16% off for 3 months - Saturday Freeze", - "description" : "", - "effectiveStartDate" : "2020-06-29", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : null, - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a00872c5d4770172c7f140c52d64", - "name" : "PM 2020 - 16% off for 3 months - Saturday Freeze", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "16% discount" ], - "pricing" : [ { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 16.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 3, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0086f1426d1016f18a9c71058a5", - "status" : "Active", - "name" : "Acquisition Discount - 25% off for 12 months", - "description" : "", - "effectiveStartDate" : "2019-12-18", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0086f1426d1016f18a9c73058a7", - "name" : "25% discount on subscription for 12 months", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "25% discount", "25% discount", "25% discount", "25% discount", "25% discount", "25% discount" ], - "pricing" : [ { - "currency" : "USD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 25.000000000, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 25.000000000, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 25.000000000, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 25.000000000, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 25.000000000, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 25.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 12, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0086b25c750016b32548239308d", - "status" : "Active", - "name" : "Customer Experience - Complementary 100% discount", - "description" : "Head-office use only", - "effectiveStartDate" : "2007-03-08", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : null, - "RatePlanType__c" : "Promotion", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0086b25c750016b32548256308f", - "name" : "Percentage", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "100% discount", "100% discount", "100% discount", "100% discount", "100% discount", "100% discount" ], - "pricing" : [ { - "currency" : "USD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 100.000000000, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 100.000000000, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 100.000000000, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 100.000000000, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 100.000000000, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 100.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "DefaultFromCustomer", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : null, - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a00864176ce90164232ac0d90fc1", - "status" : "Active", - "name" : "Cancellation Save Discount - 50% off for 3 months", - "description" : "", - "effectiveStartDate" : "2018-06-22", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0ff64176cd50164232c7e493410", - "name" : "50% discount on subscription for 3 months", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "50% discount", "50% discount", "50% discount", "50% discount", "50% discount", "50% discount" ], - "pricing" : [ { - "currency" : "USD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 50.000000000, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 50.000000000, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 50.000000000, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 50.000000000, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 50.000000000, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 50.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 3, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a00772c5c2e90172c7ebd62a68c4", - "status" : "Active", - "name" : "PM 2020 - 10% off for 12 months - Max Discount", - "description" : "", - "effectiveStartDate" : "2020-06-29", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : null, - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a01072c5c2e30172c7ed605b60d3", - "name" : "PM 2020 - 10% off for 12 months - Max Discount", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "10% discount", "10% discount", "10% discount", "10% discount", "10% discount" ], - "pricing" : [ { - "currency" : "USD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 10.000000000, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 10.000000000, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 10.000000000, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 10.000000000, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 10.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 12, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0076ae9189c016b080c930a6186", - "status" : "Active", - "name" : "DO NOT USE MANUALLY: Holiday credit - automated - GW", - "description" : "Holiday credit applied automatically by the Holiday Stop Processor.\n\n*** Not for manual use! ***\n\nSee:\nhttps://github.com/guardian/support-service-lambdas/tree/master/handlers/holiday-stop-processor\n", - "effectiveStartDate" : "2019-05-30", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0086ae928d7016b080f638477a6", - "name" : "Holiday Credit", - "type" : "OneTime", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD0", "NZD0", "EUR0", "GBP0", "CAD0", "AUD0" ], - "pricing" : [ { - "currency" : "USD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "One_Time", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : null, - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : null, - "billingPeriodAlignment" : null, - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : null, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "8a12902787109bb7018712c479592ee9", - "status" : "Active", - "name" : "PM 2023 - 40% off for 12 months - Freeze", - "description" : "", - "effectiveStartDate" : "2023-03-29", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : null, - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : null, - "externalIdSourceSystem" : "", - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "8a1290f187109bb0018712c5227f7842", - "name" : "PM 2023 - 40% off for 12 months - Freeze", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "40% discount", "40% discount", "40% discount", "40% discount", "40% discount", "40% discount" ], - "pricing" : [ { - "currency" : "USD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 40.000000000, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 40.000000000, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 40.000000000, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 40.000000000, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 40.000000000, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 40.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 12, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : null, - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "8a12989f87109bb0018712c33dc63674", - "status" : "Active", - "name" : "PM 2023 - 40% off for 3 months - Freeze", - "description" : "", - "effectiveStartDate" : "2023-03-29", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : null, - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : null, - "externalIdSourceSystem" : "", - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "8a12867b871080e2018712c3f4177d3d", - "name" : "PM 2023 - 40% off for 3 months - Freeze", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "40% discount", "40% discount", "40% discount", "40% discount", "40% discount", "40% discount" ], - "pricing" : [ { - "currency" : "USD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 40.000000000, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 40.000000000, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 40.000000000, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 40.000000000, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 40.000000000, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 40.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 3, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : null, - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - } ], - "productFeatures" : [ ] - }, { - "id" : "8a12865b8219d9b4018221061563643f", - "sku" : "ABC-00000032", - "name" : "Supporter Plus", - "description" : "New Support product July 2022", - "category" : null, - "effectiveStartDate" : "2013-02-16", - "effectiveEndDate" : "2099-02-03", - "productNumber" : null, - "allowFeatureChanges" : false, - "ProductEnabled__c" : "True", - "Entitlements__c" : null, - "AcquisitionProfile__c" : "Paid", - "ProductType__c" : "Supporter Plus", - "ProductLevel__c" : null, - "Tier__c" : null, - "productRatePlans" : [ { - "id" : "8a12865b8219d9b401822106192b64dc", - "status" : "Expired", - "name" : "Supporter Plus Monthly", - "description" : "", - "effectiveStartDate" : "2013-03-11", - "effectiveEndDate" : "2023-07-12", - "TermType__c" : null, - "FrontendId__c" : "Monthly", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A101", - "externalIdSourceSystem" : "", - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "8a12865b8219d9b401822106194e64e3", - "name" : "Supporter Plus Monthly Charge", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD13", "NZD17", "EUR10", "GBP10", "CAD13", "AUD17" ], - "pricing" : [ { - "currency" : "USD", - "price" : 13.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 17.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 10.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 10.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 13.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 17.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Supporter Plus Global Tax", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1015", - "ProductType__c" : "Supporter Plus", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Supporter Plus", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Supporter Plus", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "8a12865b8219d9b40182210618a464ba", - "status" : "Expired", - "name" : "Supporter Plus Annual", - "description" : "", - "effectiveStartDate" : "2013-03-11", - "effectiveEndDate" : "2023-07-12", - "TermType__c" : null, - "FrontendId__c" : "Yearly", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A104", - "externalIdSourceSystem" : "", - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "8a12865b8219d9b40182210618c664c1", - "name" : "Supporter Plus Annual Charge", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD120", "NZD160", "EUR95", "GBP95", "CAD120", "AUD160" ], - "pricing" : [ { - "currency" : "USD", - "price" : 120.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 160.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 95.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 95.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 120.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 160.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Annual", - "billingPeriodAlignment" : "AlignToTermStart", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : true, - "taxCode" : "Supporter Plus Global Tax", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1015", - "ProductType__c" : "Supporter Plus", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Supporter Plus", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Supporter Plus", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "8a128ed885fc6ded018602296ace3eb8", - "status" : "Active", - "name" : "Supporter Plus V2 - Monthly", - "description" : "", - "effectiveStartDate" : "2013-03-11", - "effectiveEndDate" : "2099-01-12", - "TermType__c" : null, - "FrontendId__c" : "Monthly", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A101", - "externalIdSourceSystem" : "", - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "8a128d7085fc6dec01860234cd075270", - "name" : "Contribution", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD0", "NZD0", "EUR0", "GBP0", "CAD0", "AUD0" ], - "pricing" : [ { - "currency" : "USD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : true, - "taxCode" : "Contribution", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1015", - "ProductType__c" : "Contributor", - "triggerEvent" : "ContractEffective", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize upon invoicing", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Supporter Plus - Contribution", - "deferredRevenueAccountingCodeType" : "SalesRevenue", - "recognizedRevenueAccountingCode" : "Supporter Plus - Contribution", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "8a128ed885fc6ded018602296af13eba", - "name" : "Supporter Plus Monthly Charge", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD13", "NZD17", "EUR10", "GBP10", "CAD13", "AUD17" ], - "pricing" : [ { - "currency" : "USD", - "price" : 13.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 17.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 10.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 10.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 13.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 17.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Supporter Plus Global Tax", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1015", - "ProductType__c" : "Supporter Plus", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Supporter Plus", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Supporter Plus", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "8a128ed885fc6ded01860228f77e3d5a", - "status" : "Active", - "name" : "Supporter Plus V2 - Annual", - "description" : "", - "effectiveStartDate" : "2013-03-11", - "effectiveEndDate" : "2099-01-12", - "TermType__c" : null, - "FrontendId__c" : "Yearly", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A104", - "externalIdSourceSystem" : "", - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "8a12892d85fc6df4018602451322287f", - "name" : "Contribution", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD0", "NZD0", "EUR0", "GBP0", "CAD0", "AUD0" ], - "pricing" : [ { - "currency" : "USD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Annual", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : true, - "taxCode" : "Contribution", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1015", - "ProductType__c" : "Contributor", - "triggerEvent" : "ContractEffective", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize upon invoicing", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Supporter Plus - Contribution", - "deferredRevenueAccountingCodeType" : "SalesRevenue", - "recognizedRevenueAccountingCode" : "Supporter Plus - Contribution", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "8a128ed885fc6ded01860228f7cb3d5f", - "name" : "Supporter Plus Annual Charge", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD120", "NZD160", "EUR95", "GBP95", "CAD120", "AUD160" ], - "pricing" : [ { - "currency" : "USD", - "price" : 120.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 160.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 95.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 95.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 120.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 160.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Annual", - "billingPeriodAlignment" : "AlignToTermStart", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : true, - "taxCode" : "Supporter Plus Global Tax", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1015", - "ProductType__c" : "Supporter Plus", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Supporter Plus", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Supporter Plus", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - } ], - "productFeatures" : [ ] - }, { - "id" : "2c92a0fe6619b4b901661aaf826435de", - "sku" : "ABC-00000030", - "name" : "Guardian Weekly - ROW", - "description" : "", - "category" : null, - "effectiveStartDate" : "2018-09-19", - "effectiveEndDate" : "2099-10-01", - "productNumber" : null, - "allowFeatureChanges" : false, - "ProductEnabled__c" : "True", - "Entitlements__c" : null, - "AcquisitionProfile__c" : "Paid", - "ProductType__c" : "Guardian Weekly", - "ProductLevel__c" : null, - "Tier__c" : null, - "productRatePlans" : [ { - "id" : "2c92a0ff79ac64e30179ae45669b3a83", - "status" : "Active", - "name" : "GW Oct 18 - Monthly - ROW", - "description" : "", - "effectiveStartDate" : "2018-09-19", - "effectiveEndDate" : "2099-09-19", - "TermType__c" : null, - "FrontendId__c" : "Monthly", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A101", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0ff79ac64e30179ae4566cb3a86", - "name" : "GW Oct 18 - Monthly - ROW", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD30", "GBP24.8" ], - "pricing" : [ { - "currency" : "USD", - "price" : 30.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 24.800000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0ff67cebd140167f0a2f66a12eb", - "status" : "Active", - "name" : "GW GIFT Oct 18 - 1 Year - ROW", - "description" : "", - "effectiveStartDate" : "2018-09-19", - "effectiveEndDate" : "2099-09-19", - "TermType__c" : null, - "FrontendId__c" : "OneYear", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A108", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0ff67cebd140167f0a2f68912ed", - "name" : "GW GIFT Oct 18 - 1 Year - ROW", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD360", "NZD530", "EUR270", "GBP297.6", "CAD345", "AUD424" ], - "pricing" : [ { - "currency" : "USD", - "price" : 360.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 530.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 270.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 297.600000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 345.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 424.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 1, - "upToPeriodsType" : "Billing_Periods", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Annual", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly Gift", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly Gift", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fe6619b4b601661ab300222651", - "status" : "Active", - "name" : "GW Oct 18 - Annual - ROW", - "description" : "", - "effectiveStartDate" : "2018-09-19", - "effectiveEndDate" : "2099-09-19", - "TermType__c" : null, - "FrontendId__c" : "Yearly", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A104", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fe6619b4b601661ab3002f2653", - "name" : "GW Oct 18 - Annual - ROW", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD360", "NZD530", "EUR270", "GBP297.6", "CAD345", "AUD424" ], - "pricing" : [ { - "currency" : "USD", - "price" : 360.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 530.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 270.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 297.600000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 345.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 424.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Annual", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0086619bf8901661ab545f51b21", - "status" : "Active", - "name" : "GW Oct 18 - Six for Six - ROW", - "description" : "", - "effectiveStartDate" : "2018-09-19", - "effectiveEndDate" : "2099-09-19", - "TermType__c" : null, - "FrontendId__c" : "SixWeeks", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A101", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0086619bf8901661ab546091b23", - "name" : "GW Oct 18 - First 6 issues - ROW", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD6", "NZD6", "EUR6", "GBP6", "CAD6", "AUD6" ], - "pricing" : [ { - "currency" : "USD", - "price" : 6.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 6.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 6.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 6.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 6.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 6.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 1, - "upToPeriodsType" : "Billing_Periods", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Specific_Weeks", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : 6, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0086619bf8901661ab02752722f", - "status" : "Active", - "name" : "GW Oct 18 - Quarterly - ROW", - "description" : "", - "effectiveStartDate" : "2018-09-19", - "effectiveEndDate" : "2099-09-19", - "TermType__c" : null, - "FrontendId__c" : "Quarterly", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A102", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0ff6619bf8b01661ab2d0396eb2", - "name" : "GW Oct 18 - Quarterly - ROW", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD90", "NZD132.5", "EUR67.5", "GBP74.4", "CAD86.25", "AUD106" ], - "pricing" : [ { - "currency" : "USD", - "price" : 90.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 132.500000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 67.500000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 74.400000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 86.250000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 106.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Quarter", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0076dd9892e016df8503e7c6c48", - "status" : "Active", - "name" : "GW GIFT Oct 18 - 3 Month - ROW", - "description" : "", - "effectiveStartDate" : "2018-09-19", - "effectiveEndDate" : "2099-09-19", - "TermType__c" : null, - "FrontendId__c" : "ThreeMonths", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A106", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0076dd9892e016df8503e936c4a", - "name" : "GW GIFT Oct 18 - 3 Month - ROW", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD90", "NZD132.5", "EUR67.5", "GBP74.4", "CAD86.25", "AUD106" ], - "pricing" : [ { - "currency" : "USD", - "price" : 90.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 132.500000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 67.500000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 74.400000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 86.250000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 106.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 1, - "upToPeriodsType" : "Billing_Periods", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Quarter", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly Gift", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly Gift", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - } ], - "productFeatures" : [ ] - }, { - "id" : "2c92a0ff6619bf8901661aa3247c4b1d", - "sku" : "ABC-00000029", - "name" : "Guardian Weekly - Domestic", - "description" : "", - "category" : null, - "effectiveStartDate" : "2018-09-18", - "effectiveEndDate" : "2099-10-01", - "productNumber" : null, - "allowFeatureChanges" : false, - "ProductEnabled__c" : "True", - "Entitlements__c" : null, - "AcquisitionProfile__c" : "Paid", - "ProductType__c" : "Guardian Weekly", - "ProductLevel__c" : null, - "Tier__c" : null, - "productRatePlans" : [ { - "id" : "2c92a0ff67cebd0d0167f0a1a834234e", - "status" : "Active", - "name" : "GW GIFT Oct 18 - 1 Year - Domestic", - "description" : "", - "effectiveStartDate" : "2018-09-19", - "effectiveEndDate" : "2099-09-19", - "TermType__c" : null, - "FrontendId__c" : "OneYear", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A108", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0ff67cebd0d0167f0a1a85b2350", - "name" : "GW GIFT Oct 18 - 1 Year - Domestic", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD330", "NZD546", "EUR282", "GBP165", "CAD360", "AUD432" ], - "pricing" : [ { - "currency" : "USD", - "price" : 330.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 546.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 282.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 165.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 360.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 432.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 1, - "upToPeriodsType" : "Billing_Periods", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Annual", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly Gift", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly Gift", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fe6619b4b901661aa8e66c1692", - "status" : "Active", - "name" : "GW Oct 18 - Annual - Domestic", - "description" : "", - "effectiveStartDate" : "2018-09-19", - "effectiveEndDate" : "2099-09-19", - "TermType__c" : null, - "FrontendId__c" : "Yearly", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A104", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fe6619b4b901661aa8e6811695", - "name" : "GW Oct 18 - Annual - Domestic", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD330", "NZD546", "EUR282", "GBP165", "CAD360", "AUD432" ], - "pricing" : [ { - "currency" : "USD", - "price" : 330.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 546.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 282.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 165.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 360.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 432.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Annual", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fe6619b4b301661aa494392ee2", - "status" : "Active", - "name" : "GW Oct 18 - Quarterly - Domestic", - "description" : "", - "effectiveStartDate" : "2018-09-19", - "effectiveEndDate" : "2099-09-19", - "TermType__c" : null, - "FrontendId__c" : "Quarterly", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A102", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fe6619b4b601661aa8b74e623f", - "name" : "GW Oct 18 - Quarterly - Domestic", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD82.5", "NZD136.5", "EUR70.5", "GBP41.25", "CAD90", "AUD108" ], - "pricing" : [ { - "currency" : "USD", - "price" : 82.500000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 136.500000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 70.500000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 41.250000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 90.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 108.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Quarter", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fd79ac64b00179ae3f9d474960", - "status" : "Active", - "name" : "GW Oct 18 - Monthly - Domestic", - "description" : "", - "effectiveStartDate" : "2018-09-19", - "effectiveEndDate" : "2099-09-19", - "TermType__c" : null, - "FrontendId__c" : "Monthly", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A101", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fd79ac64b00179ae3f9d704962", - "name" : "GW Oct 18 - Monthly - Domestic", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD27.5", "NZD45.5", "EUR23.5", "GBP13.75", "CAD30", "AUD36" ], - "pricing" : [ { - "currency" : "USD", - "price" : 27.500000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 45.500000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 23.500000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 13.750000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 30.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 36.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a00e6dd988e2016df85387417498", - "status" : "Active", - "name" : "GW GIFT Oct 18 - 3 Month - Domestic", - "description" : "", - "effectiveStartDate" : "2018-09-19", - "effectiveEndDate" : "2099-09-19", - "TermType__c" : null, - "FrontendId__c" : "ThreeMonths", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A106", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a00e6dd988e2016df853875d74c6", - "name" : "GW GIFT Oct 18 - 3 Month - Domestic", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD82.5", "NZD136.5", "EUR70.5", "GBP41.25", "CAD90", "AUD108" ], - "pricing" : [ { - "currency" : "USD", - "price" : 82.500000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 136.500000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 70.500000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 41.250000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 90.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 108.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 1, - "upToPeriodsType" : "Billing_Periods", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Quarter", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly Gift", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly Gift", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0086619bf8901661aaac94257fe", - "status" : "Active", - "name" : "GW Oct 18 - Six for Six - Domestic", - "description" : "", - "effectiveStartDate" : "2018-09-19", - "effectiveEndDate" : "2099-09-19", - "TermType__c" : null, - "FrontendId__c" : "SixWeeks", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A101", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0086619bf8901661aaac95d5800", - "name" : "GW Oct 18 - First 6 issues - Domestic", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD6", "NZD6", "EUR6", "GBP6", "CAD6", "AUD6" ], - "pricing" : [ { - "currency" : "USD", - "price" : 6.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 6.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 6.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 6.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 6.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 6.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 1, - "upToPeriodsType" : "Billing_Periods", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Specific_Weeks", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : 6, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - } ], - "productFeatures" : [ ] - }, { - "id" : "2c92a0fb4edd70c8014edeaa4ddb21e7", - "sku" : "ABC-00000005", - "name" : "Digital Pack", - "description" : "The Guardian & Observer Digital Pack gives you 7-day access to the Guardian & Observer daily edition for iPad, Android tablet and Kindle Fire as well as premium tier access to the iOS and Android live news apps.", - "category" : null, - "effectiveStartDate" : "2013-02-16", - "effectiveEndDate" : "2099-02-03", - "productNumber" : null, - "allowFeatureChanges" : false, - "ProductEnabled__c" : "True", - "Entitlements__c" : null, - "AcquisitionProfile__c" : "Paid", - "ProductType__c" : "Digital Pack", - "ProductLevel__c" : null, - "Tier__c" : null, - "productRatePlans" : [ { - "id" : "2c92a0ff73add07f0173b99f14390afc", - "status" : "Active", - "name" : "Digital Subscription Three Month Fixed - Deprecated", - "description" : "", - "effectiveStartDate" : "2020-08-01", - "effectiveEndDate" : "2099-01-01", - "TermType__c" : null, - "FrontendId__c" : "Three Month", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A102", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0ff73add07f0173b9a80a584466", - "name" : "Digital Subscription Three Month Fixed", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD60", "NZD63", "EUR45", "GBP36", "CAD63", "AUD63" ], - "pricing" : [ { - "currency" : "USD", - "price" : 60.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 63.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 45.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 36.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 63.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 63.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Quarter", - "billingPeriodAlignment" : "AlignToTermStart", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Digital Pack Global Tax", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1070", - "ProductType__c" : "Digital Pack", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Digital Subscription Gift Rule", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Digital Pack", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Digital Pack", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fb4edd70c8014edeaa4eae220a", - "status" : "Active", - "name" : "Digital Pack Monthly", - "description" : "", - "effectiveStartDate" : "2013-03-11", - "effectiveEndDate" : "2099-01-12", - "TermType__c" : null, - "FrontendId__c" : "Monthly", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A101", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fb4edd70c9014edeaa50342192", - "name" : "Digital Pack Monthly", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD19.99", "NZD23.5", "EUR14.99", "GBP11.99", "CAD21.95", "AUD21.5" ], - "pricing" : [ { - "currency" : "USD", - "price" : 19.990000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 23.500000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 14.990000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 11.990000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 21.950000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 21.500000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Digital Pack Global Tax", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1070", - "ProductType__c" : "Digital Pack", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Digital Pack", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Digital Pack", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fb4edd70c8014edeaa4e972204", - "status" : "Active", - "name" : "Digital Pack Annual", - "description" : "", - "effectiveStartDate" : "2013-03-11", - "effectiveEndDate" : "2099-01-12", - "TermType__c" : null, - "FrontendId__c" : "Yearly", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A104", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fb4edd70c9014edeaa5001218c", - "name" : "Digital Pack Annual", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD199", "NZD235", "EUR149", "GBP119", "CAD219", "AUD215" ], - "pricing" : [ { - "currency" : "USD", - "price" : 199.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 235.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 149.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 119.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 219.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 215.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Annual", - "billingPeriodAlignment" : "AlignToTermStart", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : true, - "taxCode" : "Digital Pack Global Tax", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1070", - "ProductType__c" : "Digital Pack", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Digital Pack", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Digital Pack", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fb4edd70c8014edeaa4e8521fe", - "status" : "Active", - "name" : "Digital Pack Quarterly", - "description" : "", - "effectiveStartDate" : "2013-03-11", - "effectiveEndDate" : "2099-01-12", - "TermType__c" : null, - "FrontendId__c" : "Quarterly", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A102", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fb4edd70c9014edeaa4fd42186", - "name" : "Digital Pack Quarterly", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD59.95", "NZD70.5", "EUR44.95", "GBP35.95", "CAD65.85", "AUD64.5" ], - "pricing" : [ { - "currency" : "USD", - "price" : 59.950000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 70.500000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 44.950000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 35.950000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 65.850000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 64.500000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Quarter", - "billingPeriodAlignment" : "AlignToTermStart", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Digital Pack Global Tax", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1070", - "ProductType__c" : "Digital Pack", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Digital Pack", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Digital Pack", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a00d779932ef0177a65430d30ac1", - "status" : "Active", - "name" : "Digital Subscription Three Month Fixed - One Time Charge", - "description" : "", - "effectiveStartDate" : "2020-08-01", - "effectiveEndDate" : "2099-01-01", - "TermType__c" : null, - "FrontendId__c" : "Three Month", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A106", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a00f779933030177a65881490325", - "name" : "Digital Subscription Three Month Fixed - One Time Charge", - "type" : "OneTime", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD60", "NZD63", "EUR45", "GBP36", "CAD63", "AUD63" ], - "pricing" : [ { - "currency" : "USD", - "price" : 60.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 63.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 45.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 36.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 63.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 63.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "One_Time", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : null, - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : null, - "billingPeriodAlignment" : null, - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : null, - "taxable" : true, - "taxCode" : "Digital Pack Global Tax", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1070", - "ProductType__c" : "Digital Pack", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Digital Subscription Gift Rule", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Digital Pack", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Digital Pack", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a00d71c96bac0171df3a5622740f", - "status" : "Active", - "name" : "Corporate Digital Subscription", - "description" : "", - "effectiveStartDate" : "2020-01-01", - "effectiveEndDate" : "2050-01-01", - "TermType__c" : "TERMED", - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A100", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a00871c96ba30171df3b481931a0", - "name" : "Corporate Digital Subscription", - "type" : "OneTime", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD0", "NZD0", "EUR0", "GBP0", "CAD0", "AUD0" ], - "pricing" : [ { - "currency" : "USD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "One_Time", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : null, - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : null, - "billingPeriodAlignment" : null, - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : null, - "taxable" : false, - "taxCode" : "", - "taxMode" : null, - "ProductCode__c" : "P1070", - "ProductType__c" : "Digital Pack", - "triggerEvent" : "ContractEffective", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize upon invoicing", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Digital Pack", - "deferredRevenueAccountingCodeType" : "SalesRevenue", - "recognizedRevenueAccountingCode" : "Digital Pack", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a00c77992ba70177a6596f710265", - "status" : "Active", - "name" : "Digital Subscription One Year Fixed - One Time Charge", - "description" : "", - "effectiveStartDate" : "2020-08-01", - "effectiveEndDate" : "2099-01-01", - "TermType__c" : null, - "FrontendId__c" : "One Year", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A108", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a011779932fd0177a670f43102aa", - "name" : "Digital Subscription One Year Fixed - One Time Charge", - "type" : "OneTime", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD165", "NZD175", "EUR125", "GBP99", "CAD175", "AUD175" ], - "pricing" : [ { - "currency" : "USD", - "price" : 165.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 175.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 125.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 99.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 175.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 175.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "One_Time", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : null, - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : null, - "billingPeriodAlignment" : null, - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : null, - "taxable" : true, - "taxCode" : "Digital Pack Global Tax", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1070", - "ProductType__c" : "Digital Pack", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Digital Subscription Gift Rule", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Digital Pack", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Digital Pack", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a00773adc09d0173b99e4ded7f45", - "status" : "Active", - "name" : "Digital Subscription One Year Fixed - Deprecated", - "description" : "", - "effectiveStartDate" : "2020-08-01", - "effectiveEndDate" : "2099-01-01", - "TermType__c" : null, - "FrontendId__c" : "One Year", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A104", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a00d73add0220173b9a387c62aec", - "name" : "Digital Subscription One Year Fixed", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD165", "NZD175", "EUR125", "GBP99", "CAD175", "AUD175" ], - "pricing" : [ { - "currency" : "USD", - "price" : 165.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 175.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 125.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 99.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 175.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 175.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Annual", - "billingPeriodAlignment" : "AlignToTermStart", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Digital Pack Global Tax", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1070", - "ProductType__c" : "Digital Pack", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Digital Subscription Gift Rule", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Digital Pack", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Digital Pack", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - } ], - "productFeatures" : [ ] - }, { - "id" : "2c92a00870ec598001710740c3d92eab", - "sku" : "ABC-00000031", - "name" : "Newspaper Digital Voucher", - "description" : "Newspaper Digital Voucher", - "category" : null, - "effectiveStartDate" : "2007-01-01", - "effectiveEndDate" : "2099-07-12", - "productNumber" : null, - "allowFeatureChanges" : false, - "ProductEnabled__c" : "True", - "Entitlements__c" : null, - "AcquisitionProfile__c" : "Paid", - "ProductType__c" : "Newspaper - Digital Voucher", - "ProductLevel__c" : null, - "Tier__c" : null, - "productRatePlans" : [ { - "id" : "2c92a00870ec598001710740d3d03035", - "status" : "Active", - "name" : "Everyday+", - "description" : "Guardian and Observer papers, plus The Guardian Daily and premium access to the Guardian Live app.", - "effectiveStartDate" : "2007-01-01", - "effectiveEndDate" : "2099-07-12", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : "34", - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A109", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a00870ec598001710740d4143037", - "name" : "Digipack", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP2" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 2.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "EVERYDAY+ Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1299", - "ProductType__c" : "Digital Pack", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740d4b8304f", - "name" : "Saturday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP10.95" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 10.950000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "EVERYDAY+ Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1222", - "ProductType__c" : "Print Saturday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher SAT", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher SAT", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740d54f3069", - "name" : "Tuesday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP7.82" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 7.820000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "EVERYDAY+ Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1212", - "ProductType__c" : "Print Tuesday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher M-F", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher M-F", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740d5fd3073", - "name" : "Monday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP7.82" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 7.820000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "EVERYDAY+ Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1212", - "ProductType__c" : "Print Monday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher M-F", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher M-F", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740d691307c", - "name" : "Thursday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP7.82" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 7.820000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "EVERYDAY+ Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1212", - "ProductType__c" : "Print Thursday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher M-F", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher M-F", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740d7493084", - "name" : "Wednesday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP7.82" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 7.820000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "EVERYDAY+ Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1212", - "ProductType__c" : "Print Wednesday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher M-F", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher M-F", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740d7e2308d", - "name" : "Sunday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP10.94" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 10.940000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "EVERYDAY+ Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1232", - "ProductType__c" : "Print Sunday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher SUN", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher SUN", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740d8873096", - "name" : "Friday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP7.82" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 7.820000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "EVERYDAY+ Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1212", - "ProductType__c" : "Print Friday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher M-F", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher M-F", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a00870ec598001710740ca532f69", - "status" : "Active", - "name" : "Sixday", - "description" : "Guardian papers", - "effectiveStartDate" : "2007-01-01", - "effectiveEndDate" : "2099-07-12", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : "30", - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A115", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a00870ec598001710740cc9b2f88", - "name" : "Thursday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP8.44" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 8.440000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Newspaper Digital Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1212", - "ProductType__c" : "Print Thursday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher M-F", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher M-F", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740cd012f90", - "name" : "Wednesday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP8.44" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 8.440000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Newspaper Digital Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1212", - "ProductType__c" : "Print Wednesday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher M-F", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher M-F", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740cd6e2fa2", - "name" : "Saturday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP11.79" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 11.790000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Newspaper Digital Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1222", - "ProductType__c" : "Print Saturday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher SAT", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher SAT", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740cb4e2f6b", - "name" : "Friday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP8.44" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 8.440000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Newspaper Digital Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1212", - "ProductType__c" : "Print Friday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher M-F", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher M-F", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740cbb32f77", - "name" : "Monday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP8.44" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 8.440000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Newspaper Digital Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1212", - "ProductType__c" : "Print Monday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher M-F", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher M-F", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740cc2c2f80", - "name" : "Tuesday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP8.44" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 8.440000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Newspaper Digital Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1212", - "ProductType__c" : "Print Tuesday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher M-F", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher M-F", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a00870ec598001710740c78d2f13", - "status" : "Active", - "name" : "Everyday", - "description" : "Guardian and Observer papers", - "effectiveStartDate" : "2007-01-01", - "effectiveEndDate" : "2099-07-12", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : "34", - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A114", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a00870ec598001710740c8c42f40", - "name" : "Thursday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP7.82" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 7.820000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Newspaper Digital Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1212", - "ProductType__c" : "Print Thursday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher M-F", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher M-F", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740c91d2f4d", - "name" : "Friday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP7.82" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 7.820000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Newspaper Digital Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1212", - "ProductType__c" : "Print Friday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher M-F", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher M-F", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740c7b82f1c", - "name" : "Monday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP7.82" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 7.820000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Newspaper Digital Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1212", - "ProductType__c" : "Print Monday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher M-F", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher M-F", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740c80f2f26", - "name" : "Tuesday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP7.82" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 7.820000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Newspaper Digital Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1212", - "ProductType__c" : "Print Tuesday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher M-F", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher M-F", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740c8652f37", - "name" : "Saturday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP10.95" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 10.950000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Newspaper Digital Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1222", - "ProductType__c" : "Print Saturday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher SAT", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher SAT", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740c9802f59", - "name" : "Wednesday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP7.82" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 7.820000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Newspaper Digital Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1212", - "ProductType__c" : "Print Wednesday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher M-F", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher M-F", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740c9d72f61", - "name" : "Sunday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP10.94" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 10.940000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Newspaper Digital Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1232", - "ProductType__c" : "Print Sunday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher SUN", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher SUN", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a00870ec598001710740d24b3022", - "status" : "Active", - "name" : "Weekend", - "description" : "Saturday Guardian and Observer papers", - "effectiveStartDate" : "2007-01-01", - "effectiveEndDate" : "2099-07-12", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : "24", - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A119", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a00870ec598001710740d28e3024", - "name" : "Saturday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP12.5" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 12.500000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Newspaper Digital Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1222", - "ProductType__c" : "Print Saturday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher SAT", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher SAT", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740d325302c", - "name" : "Sunday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP12.49" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 12.490000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Newspaper Digital Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1232", - "ProductType__c" : "Print Sunday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher SUN", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher SUN", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a00870ec598001710740c4582ead", - "status" : "Active", - "name" : "Sixday+", - "description" : "Guardian papers, plus The Guardian Daily and premium access to the Guardian Live app.", - "effectiveStartDate" : "2007-01-01", - "effectiveEndDate" : "2099-07-12", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : "31", - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A110", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a00870ec598001710740c48e2eaf", - "name" : "Thursday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP8.44" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 8.440000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "SIXDAY+ Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1212", - "ProductType__c" : "Print Thursday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher M-F", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher M-F", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740c4dc2eb7", - "name" : "Wednesday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP8.44" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 8.440000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "SIXDAY+ Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1212", - "ProductType__c" : "Print Wednesday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher M-F", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher M-F", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740c5192ebf", - "name" : "Friday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP8.44" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 8.440000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "SIXDAY+ Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1212", - "ProductType__c" : "Print Friday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher M-F", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher M-F", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740c55a2ec7", - "name" : "Saturday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP11.79" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 11.790000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "SIXDAY+ Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1222", - "ProductType__c" : "Print Saturday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher SAT", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher SAT", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740c5962ecf", - "name" : "Monday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP8.44" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 8.440000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "SIXDAY+ Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1212", - "ProductType__c" : "Print Monday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher M-F", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher M-F", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740c5cf2ed7", - "name" : "Digipack", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP2" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 2.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "SIXDAY+ Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1299", - "ProductType__c" : "Digital Pack", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740c60f2edf", - "name" : "Tuesday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP8.44" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 8.440000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "SIXDAY+ Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1212", - "ProductType__c" : "Print Tuesday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher M-F", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher M-F", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a00870ec598001710740d0d83017", - "status" : "Active", - "name" : "Sunday", - "description" : "Observer paper", - "effectiveStartDate" : "2017-03-27", - "effectiveEndDate" : "2099-07-12", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : "15", - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A118", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a00870ec598001710740d1103019", - "name" : "Sunday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP13.99" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 13.990000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Newspaper Digital Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1232", - "ProductType__c" : "Print Sunday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher SUN", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher SUN", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a00870ec598001710740cf9e3004", - "status" : "Active", - "name" : "Sunday+", - "description" : "Observer paper, plus The Guardian Daily and premium access to the Guardian Live app.", - "effectiveStartDate" : "2007-01-01", - "effectiveEndDate" : "2099-07-12", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : "11", - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A112", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a00870ec598001710740cfda3006", - "name" : "Digipack", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP10" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 10.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "SUNDAY+ Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1299", - "ProductType__c" : "Digital Pack", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740d053300f", - "name" : "Sunday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP13.99" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 13.990000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "SUNDAY+ Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1232", - "ProductType__c" : "Print Sunday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher SUN", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher SUN", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a00870ec598001710740c6672ee7", - "status" : "Active", - "name" : "Weekend+", - "description" : "Saturday Guardian and Observer papers, plus The Guardian Daily and premium access to the Guardian Live app.", - "effectiveStartDate" : "2007-01-01", - "effectiveEndDate" : "2099-07-12", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : "19", - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A113", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a00870ec598001710740c6872ee9", - "name" : "Saturday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP12.5" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 12.500000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "WEEKEND+ Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1222", - "ProductType__c" : "Print Saturday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher SAT", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher SAT", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740c6ce2ef1", - "name" : "Digipack", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP9" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 9.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "WEEKEND+ Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1299", - "ProductType__c" : "Digital Pack", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740c7132efe", - "name" : "Sunday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP12.49" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 12.490000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "WEEKEND+ Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1232", - "ProductType__c" : "Print Sunday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher SUN", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher SUN", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a00870ec598001710740cdd02fbd", - "status" : "Active", - "name" : "Saturday", - "description" : "Saturday paper", - "effectiveStartDate" : "2018-03-14", - "effectiveEndDate" : "2099-07-12", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : "15", - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A117", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a00870ec598001710740ce042fcb", - "name" : "Saturday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP13.99" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 13.990000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Newspaper Digital Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1222", - "ProductType__c" : "Print Saturday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher SAT", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher SAT", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a00870ec598001710740ce702ff0", - "status" : "Active", - "name" : "Saturday+", - "description" : "Saturday paper, plus The Guardian Daily and premium access to the Guardian Live app.", - "effectiveStartDate" : "2018-03-14", - "effectiveEndDate" : "2099-07-12", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : "11", - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A111", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a00870ec598001710740cf1e2ffc", - "name" : "Saturday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP13.99" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 13.990000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "SATURDAY+ Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1222", - "ProductType__c" : "Print Saturday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher SAT", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher SAT", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740cea02ff4", - "name" : "Digipack", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP10" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 10.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "SATURDAY+ Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1299", - "ProductType__c" : "Digital Pack", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - } ], - "productFeatures" : [ ] - }, { - "id" : "2c92a0fe5aacfabe015ad24bf6e15ff6", - "sku" : "ABC-00000028", - "name" : "Contributor", - "description" : "", - "category" : null, - "effectiveStartDate" : "2017-03-15", - "effectiveEndDate" : "2099-03-15", - "productNumber" : null, - "allowFeatureChanges" : false, - "ProductEnabled__c" : "True", - "Entitlements__c" : null, - "AcquisitionProfile__c" : "Paid", - "ProductType__c" : "Contribution", - "ProductLevel__c" : null, - "Tier__c" : null, - "productRatePlans" : [ { - "id" : "2c92a0fc5e1dc084015e37f58c200eea", - "status" : "Active", - "name" : "Annual Contribution", - "description" : "", - "effectiveStartDate" : "2017-03-15", - "effectiveEndDate" : "2099-03-15", - "TermType__c" : "TERMED", - "FrontendId__c" : "Annual", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A104", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fc5e1dc084015e37f58c7b0f34", - "name" : "Annual Contribution", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD60", "NZD60", "EUR60", "GBP60", "CAD5", "AUD100" ], - "pricing" : [ { - "currency" : "USD", - "price" : 60.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 60.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 60.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 60.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 5.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 100.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Annual", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : true, - "taxCode" : "Contribution", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1010", - "ProductType__c" : "Contributor", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize upon invoicing", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Contribution", - "deferredRevenueAccountingCodeType" : "SalesRevenue", - "recognizedRevenueAccountingCode" : "Contribution", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fc5aacfadd015ad24db4ff5e97", - "status" : "Active", - "name" : "Monthly Contribution", - "description" : "", - "effectiveStartDate" : "2017-03-15", - "effectiveEndDate" : "2099-03-15", - "TermType__c" : "TERMED", - "FrontendId__c" : "Monthly", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A101", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fc5aacfadd015ad250bf2c6d38", - "name" : "Monthly Contribution", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD5", "NZD5", "EUR5", "GBP5", "CAD5", "AUD10" ], - "pricing" : [ { - "currency" : "USD", - "price" : 5.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 5.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 5.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 5.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 5.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 10.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : true, - "taxCode" : "Contribution", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1010", - "ProductType__c" : "Contributor", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize upon invoicing", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Contribution", - "deferredRevenueAccountingCodeType" : "SalesRevenue", - "recognizedRevenueAccountingCode" : "Contribution", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - } ], - "productFeatures" : [ ] - }, { - "id" : "2c92a0fd57d0a9870157d73fa27c3de1", - "sku" : "ABC-00000017", - "name" : "Guardian Weekly Zone A", - "description" : "", - "category" : null, - "effectiveStartDate" : "1990-10-18", - "effectiveEndDate" : "2099-10-18", - "productNumber" : null, - "allowFeatureChanges" : false, - "ProductEnabled__c" : "True", - "Entitlements__c" : null, - "AcquisitionProfile__c" : "Paid", - "ProductType__c" : "Guardian Weekly", - "ProductLevel__c" : null, - "Tier__c" : null, - "productRatePlans" : [ { - "id" : "2c92a0ff5a6b5d77015a7fb38d201688", - "status" : "Active", - "name" : "Guardian Weekly 10% Discount", - "description" : "", - "effectiveStartDate" : "1991-01-01", - "effectiveEndDate" : "2099-01-01", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : null, - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A104", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0ff5a6b5d77015a7fb548381f4e", - "name" : "10% Discount", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "10% discount" ], - "pricing" : [ { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 10.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Annual", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : null, - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0ff5a5adca7015a5c51a69c7f2e", - "status" : "Active", - "name" : "Guardian Weekly 3 Years", - "description" : "", - "effectiveStartDate" : "1995-12-12", - "effectiveEndDate" : "2099-10-18", - "TermType__c" : "ONETERM", - "FrontendId__c" : "ThreeYears", - "Saving__c" : null, - "DefaultTerm__c" : "36", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A104", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0ff5a5adca7015a5c51a6ad7f30", - "name" : "Zone A 3 Years", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD720", "GBP360" ], - "pricing" : [ { - "currency" : "USD", - "price" : 720.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 360.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 1, - "upToPeriodsType" : "Billing_Periods", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Three_Years", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0ff5a5adca7015a5c4af5963efa", - "status" : "Active", - "name" : "Guardian Weekly 6 Months", - "description" : "", - "effectiveStartDate" : "1995-10-18", - "effectiveEndDate" : "2099-10-18", - "TermType__c" : null, - "FrontendId__c" : "SixMonths", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A103", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0ff5a5adca7015a5c4af5b63f01", - "name" : "Zone A 6 Months", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD120", "GBP60" ], - "pricing" : [ { - "currency" : "USD", - "price" : 120.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 60.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Semi_Annual", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0ff5a4b85e7015a4cf95d352a07", - "status" : "Active", - "name" : "Guardian Weekly 12 Issues", - "description" : "12 issues", - "effectiveStartDate" : "1995-11-13", - "effectiveEndDate" : "2099-02-14", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A102", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0ff5a4b85e7015a4cf95d472a09", - "name" : "Zone A 12 Issues", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD12", "GBP12" ], - "pricing" : [ { - "currency" : "USD", - "price" : 12.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 12.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 1, - "upToPeriodsType" : "Billing_Periods", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Specific_Weeks", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : 12, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "ContractEffective", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0ff59d9d540015a41a40b3e07d3", - "status" : "Active", - "name" : "Guardian Weekly 6 Issues", - "description" : "", - "effectiveStartDate" : "1995-02-13", - "effectiveEndDate" : "2099-02-14", - "TermType__c" : null, - "FrontendId__c" : "SixWeeks", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A101", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fe5a241e5a015a41f1c4b102c3", - "name" : "Zone A 6 Issues", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD6", "GBP6" ], - "pricing" : [ { - "currency" : "USD", - "price" : 6.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 6.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 1, - "upToPeriodsType" : "Billing_Periods", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Specific_Weeks", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : 6, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "ContractEffective", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0ff58bdf4eb0158f2ecc89c1034", - "status" : "Active", - "name" : "Guardian Weekly 1 Year", - "description" : "", - "effectiveStartDate" : "1995-12-12", - "effectiveEndDate" : "2099-10-18", - "TermType__c" : "ONETERM", - "FrontendId__c" : "OneYear", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A104", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0ff58bdf4eb0158f2ecc8ae1036", - "name" : "Zone A 1 Year", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD240", "GBP120" ], - "pricing" : [ { - "currency" : "USD", - "price" : 240.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 120.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 1, - "upToPeriodsType" : "Billing_Periods", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Annual", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0ff57d0a0b60157d741e722439a", - "status" : "Active", - "name" : "Guardian Weekly Annual", - "description" : "", - "effectiveStartDate" : "1995-10-18", - "effectiveEndDate" : "2099-10-18", - "TermType__c" : null, - "FrontendId__c" : "Yearly", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A104", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fd57d0a9870157d7510cfd66f0", - "name" : "Zone A Annual", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD240", "GBP120" ], - "pricing" : [ { - "currency" : "USD", - "price" : 240.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 120.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Annual", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fe5a6b4e98015a7fb648541d78", - "status" : "Active", - "name" : "Guardian Weekly 30% Discount", - "description" : "", - "effectiveStartDate" : "1991-01-01", - "effectiveEndDate" : "2099-01-01", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : null, - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A104", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fe5a6b4e98015a7fb648631d7a", - "name" : "30% Discount", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "30% discount" ], - "pricing" : [ { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 30.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Annual", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : null, - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fe5a6b4e98015a7fb59d9407a6", - "status" : "Active", - "name" : "Guardian Weekly 25% Discount", - "description" : "", - "effectiveStartDate" : "1991-01-01", - "effectiveEndDate" : "2099-01-01", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : null, - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A104", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fe5a6b4e98015a7fb59db107a8", - "name" : "25% Discount", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "25% discount" ], - "pricing" : [ { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 25.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Annual", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : null, - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fe5a5ad349015a5c4e3f87184c", - "status" : "Active", - "name" : "Guardian Weekly 6 Months Only", - "description" : "", - "effectiveStartDate" : "1995-12-12", - "effectiveEndDate" : "2099-10-18", - "TermType__c" : "ONETERM", - "FrontendId__c" : "SixMonthsOnly", - "Saving__c" : null, - "DefaultTerm__c" : "6", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A103", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fe5a5ad349015a5c4e3f99184f", - "name" : "Zone A 6 Months", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD120", "GBP60" ], - "pricing" : [ { - "currency" : "USD", - "price" : 120.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 60.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 6, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Semi_Annual", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fe5a5ad343015a5c50b4eb2d72", - "status" : "Active", - "name" : "Guardian Weekly 2 Years", - "description" : "", - "effectiveStartDate" : "1995-12-12", - "effectiveEndDate" : "2099-10-18", - "TermType__c" : "ONETERM", - "FrontendId__c" : "TwoYears", - "Saving__c" : null, - "DefaultTerm__c" : "24", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A104", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fe5a5ad343015a5c50b4fc2d74", - "name" : "Zone A 2 Years", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD480", "GBP240" ], - "pricing" : [ { - "currency" : "USD", - "price" : 480.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 240.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 1, - "upToPeriodsType" : "Billing_Periods", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Two_Years", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fd57d0a9870157d7412f19424f", - "status" : "Active", - "name" : "Guardian Weekly Quarterly", - "description" : "", - "effectiveStartDate" : "1995-10-18", - "effectiveEndDate" : "2099-10-18", - "TermType__c" : null, - "FrontendId__c" : "Quarterly", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A102", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0ff57d0a0b50157d752a0077624", - "name" : "Zone A Quarterly", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD60", "GBP30" ], - "pricing" : [ { - "currency" : "USD", - "price" : 60.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 30.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Quarter", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - } ], - "productFeatures" : [ ] - }, { - "id" : "2c92a0fe57d0a0c40157d74240d35541", - "sku" : "ABC-00000019", - "name" : "Guardian Weekly Zone B", - "description" : "", - "category" : null, - "effectiveStartDate" : "1996-01-01", - "effectiveEndDate" : "2099-10-18", - "productNumber" : null, - "allowFeatureChanges" : false, - "ProductEnabled__c" : "True", - "Entitlements__c" : null, - "AcquisitionProfile__c" : "Paid", - "ProductType__c" : "Guardian Weekly", - "ProductLevel__c" : null, - "Tier__c" : null, - "productRatePlans" : [ { - "id" : "2c92a0fe5a6b4e98015a8026d9d30b32", - "status" : "Active", - "name" : "Guardian Weekly 10% Discount", - "description" : "", - "effectiveStartDate" : "1996-10-18", - "effectiveEndDate" : "2099-10-18", - "TermType__c" : "TERMED", - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A104", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fe5a6b4e98015a8026d9e70b34", - "name" : "10% Discount", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "0% discount", "0% discount", "0% discount", "10% discount", "0% discount", "0% discount" ], - "pricing" : [ { - "currency" : "USD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 10.000000000, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Annual", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : null, - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0ff5a6b5d77015a80298bfa6e7c", - "status" : "Active", - "name" : "Guardian Weekly 30% Discount", - "description" : "", - "effectiveStartDate" : "1996-10-18", - "effectiveEndDate" : "2099-10-18", - "TermType__c" : "TERMED", - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A104", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0ff5a6b5d77015a80298c0d6e7f", - "name" : "30% Discount", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "0% discount", "0% discount", "0% discount", "30% discount", "0% discount", "0% discount" ], - "pricing" : [ { - "currency" : "USD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 30.000000000, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Annual", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : null, - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0ff5a6b5d74015a8028b15f4db4", - "status" : "Active", - "name" : "Guardian Weekly 25% Discount", - "description" : "", - "effectiveStartDate" : "1996-10-18", - "effectiveEndDate" : "2099-10-18", - "TermType__c" : "TERMED", - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A104", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0ff5a6b5d74015a8028b16f4db6", - "name" : "25% Discount", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "0% discount", "0% discount", "0% discount", "25% discount", "0% discount", "0% discount" ], - "pricing" : [ { - "currency" : "USD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 25.000000000, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Annual", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : null, - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0ff5a5adca9015a611f77db4431", - "status" : "Active", - "name" : "Guardian Weekly 3 Years", - "description" : "", - "effectiveStartDate" : "1996-10-18", - "effectiveEndDate" : "2099-10-18", - "TermType__c" : "ONETERM", - "FrontendId__c" : "ThreeYears", - "Saving__c" : null, - "DefaultTerm__c" : "36", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A104", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0ff5a5adca9015a611f77eb4436", - "name" : "Zone B 3 Years", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD720", "NZD1176", "EUR588", "GBP456", "CAD720", "AUD936" ], - "pricing" : [ { - "currency" : "USD", - "price" : 720.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 1176.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 588.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 456.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 720.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 936.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 1, - "upToPeriodsType" : "Billing_Periods", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Three_Years", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0ff5a5adca7015a611d44e01395", - "status" : "Active", - "name" : "Guardian Weekly 2 Years", - "description" : "", - "effectiveStartDate" : "1996-10-18", - "effectiveEndDate" : "2099-10-18", - "TermType__c" : "ONETERM", - "FrontendId__c" : "TwoYears", - "Saving__c" : null, - "DefaultTerm__c" : "24", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A104", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0ff5a5adca7015a611d44f21397", - "name" : "Zone B 2 Years", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD480", "NZD784", "EUR392", "GBP304", "CAD480", "AUD624" ], - "pricing" : [ { - "currency" : "USD", - "price" : 480.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 784.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 392.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 304.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 480.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 624.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 1, - "upToPeriodsType" : "Billing_Periods", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Two_Years", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fe5a5ad349015a5c61d6e05d8d", - "status" : "Active", - "name" : "Guardian Weekly 6 Months Only", - "description" : "", - "effectiveStartDate" : "1996-10-18", - "effectiveEndDate" : "2099-10-18", - "TermType__c" : "ONETERM", - "FrontendId__c" : "SixMonthsOnly", - "Saving__c" : null, - "DefaultTerm__c" : "6", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A103", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fe5a5ad349015a5c61d6f05d94", - "name" : "Zone B 6 Months", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD120", "NZD196", "EUR98", "GBP76", "CAD120", "AUD156" ], - "pricing" : [ { - "currency" : "USD", - "price" : 120.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 196.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 98.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 76.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 120.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 156.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 6, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Semi_Annual", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fe5a5ad344015a5c67b1144250", - "status" : "Active", - "name" : "Guardian Weekly 6 Issues", - "description" : "", - "effectiveStartDate" : "1996-10-18", - "effectiveEndDate" : "2099-10-18", - "TermType__c" : "ONETERM", - "FrontendId__c" : "SixWeeks", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A101", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fe5a5ad344015a5c67b1234254", - "name" : "Zone B 6 Issues", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD6", "NZD6", "EUR6", "GBP6", "CAD6", "AUD6" ], - "pricing" : [ { - "currency" : "USD", - "price" : 6.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 6.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 6.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 6.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 6.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 6.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 1, - "upToPeriodsType" : "Billing_Periods", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Specific_Weeks", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : 6, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "ContractEffective", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fe57d0a0c40157d74241005544", - "status" : "Active", - "name" : "Guardian Weekly Quarterly", - "description" : "", - "effectiveStartDate" : "1996-01-01", - "effectiveEndDate" : "2099-10-18", - "TermType__c" : "TERMED", - "FrontendId__c" : "Quarterly", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A102", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fd57d0a9230157d75a5e377221", - "name" : "Zone B Quarterly", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD60", "NZD98", "EUR49", "GBP38", "CAD60", "AUD78" ], - "pricing" : [ { - "currency" : "USD", - "price" : 60.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 98.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 49.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 38.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 60.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 78.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Quarter", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fe57d0a0c40157d74240de5543", - "status" : "Active", - "name" : "Guardian Weekly Annual", - "description" : "", - "effectiveStartDate" : "1996-10-18", - "effectiveEndDate" : "2099-10-18", - "TermType__c" : "TERMED", - "FrontendId__c" : "Yearly", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A104", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0ff57d0a0b50157d759315607c5", - "name" : "Zone B Annual", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD240", "NZD392", "EUR196", "GBP152", "CAD240", "AUD312" ], - "pricing" : [ { - "currency" : "USD", - "price" : 240.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 392.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 196.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 152.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 240.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 312.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Annual", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fd5a5adc8b015a5c690d0d1ec6", - "status" : "Active", - "name" : "Guardian Weekly 12 Issues", - "description" : "", - "effectiveStartDate" : "1996-10-18", - "effectiveEndDate" : "2099-10-18", - "TermType__c" : "ONETERM", - "FrontendId__c" : "TwelveWeeks", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A102", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fd5a5adc8b015a5c690d261ec8", - "name" : "Zone B 12 Issues", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD12", "NZD12", "EUR12", "GBP12", "CAD12", "AUD12" ], - "pricing" : [ { - "currency" : "USD", - "price" : 12.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 12.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 12.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 12.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 12.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 12.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 1, - "upToPeriodsType" : "Billing_Periods", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Specific_Weeks", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : 12, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "ContractEffective", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fd5a5adc8b015a5c65074b7c41", - "status" : "Active", - "name" : "Guardian Weekly 6 Months", - "description" : "", - "effectiveStartDate" : "1996-10-18", - "effectiveEndDate" : "2099-10-18", - "TermType__c" : "TERMED", - "FrontendId__c" : "SixMonths", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A103", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fd5a5adc8b015a5c65075e7c43", - "name" : "Zone B 6 Months", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD120", "NZD196", "EUR98", "GBP76", "CAD120", "AUD156" ], - "pricing" : [ { - "currency" : "USD", - "price" : 120.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 196.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 98.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 76.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 120.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 156.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Semi_Annual", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fd58cf57000158f30ae6d06f2a", - "status" : "Active", - "name" : "Guardian Weekly 1 Year", - "description" : "", - "effectiveStartDate" : "1996-01-01", - "effectiveEndDate" : "2099-10-18", - "TermType__c" : "ONETERM", - "FrontendId__c" : "OneYear", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A104", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fd58cf57000158f30ae6e26f2c", - "name" : "Zone B 1 Year", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD240", "NZD392", "EUR196", "GBP152", "CAD240", "AUD312" ], - "pricing" : [ { - "currency" : "USD", - "price" : 240.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 392.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 196.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 152.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 240.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 312.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 1, - "upToPeriodsType" : "Billing_Periods", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Annual", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - } ], - "productFeatures" : [ ] - } ], - "nextPage" : "/v1/catalog/products?page=2&pageSize=10", - "success" : true -} \ No newline at end of file diff --git a/lambda/src/test/resources/Migrations/SupporterPlus2023V1V2/annual-contribution/invoice-preview.json b/lambda/src/test/resources/Migrations/SupporterPlus2023V1V2/annual-contribution/invoice-preview.json deleted file mode 100644 index c713926e..00000000 --- a/lambda/src/test/resources/Migrations/SupporterPlus2023V1V2/annual-contribution/invoice-preview.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "accountId" : "ACCOUNT-ID", - "invoiceItems" : [ { - "id" : "c543d5155cb742ccaaa1c76ce3ab4abe", - "subscriptionName" : "SUBSCRIPTION-NUMBER", - "subscriptionId" : "8a12886a8962de7001896d624165165b", - "subscriptionNumber" : "SUBSCRIPTION-NUMBER", - "serviceStartDate" : "2024-06-28", - "serviceEndDate" : "2025-06-27", - "chargeAmount" : 120.000000000, - "chargeDescription" : "", - "chargeName" : "Supporter Plus Annual Charge", - "chargeNumber" : "C-04411538", - "chargeId" : "8a12843288f6ded10188ff5fbf027bb4", - "productName" : "Supporter Plus", - "quantity" : 1, - "taxAmount" : 0.000000000, - "unitOfMeasure" : "", - "chargeDate" : "2023-07-19 10:01:43", - "chargeType" : "Recurring", - "processingType" : "Charge", - "appliedToItemId" : null - } ], - "success" : true -} \ No newline at end of file diff --git a/lambda/src/test/resources/Migrations/SupporterPlus2023V1V2/annual-contribution/subscription.json b/lambda/src/test/resources/Migrations/SupporterPlus2023V1V2/annual-contribution/subscription.json deleted file mode 100644 index 9f269e58..00000000 --- a/lambda/src/test/resources/Migrations/SupporterPlus2023V1V2/annual-contribution/subscription.json +++ /dev/null @@ -1,162 +0,0 @@ -{ - "success" : true, - "id" : "SUBSCRIPTION-ID", - "accountId" : "ACCOUNT-ID", - "accountNumber" : "ACCOUNT-NUMBER", - "accountName" : "ACCOUNT-NAME", - "invoiceOwnerAccountId" : "ACCOUNT-ID", - "invoiceOwnerAccountNumber" : "ACCOUNT-NUMBER", - "invoiceOwnerAccountName" : "ACCOUNT-NAME", - "subscriptionNumber" : "SUBSCRIPTION-NUMBER", - "version" : 1, - "revision" : "1.0", - "termType" : "TERMED", - "invoiceSeparately" : false, - "contractEffectiveDate" : "2023-06-28", - "serviceActivationDate" : "2023-06-28", - "customerAcceptanceDate" : "2023-06-28", - "subscriptionStartDate" : "2023-06-28", - "subscriptionEndDate" : "2024-06-28", - "lastBookingDate" : "2023-06-28", - "termStartDate" : "2023-06-28", - "termEndDate" : "2024-06-28", - "initialTerm" : 12, - "initialTermPeriodType" : "Month", - "currentTerm" : 12, - "currentTermPeriodType" : "Month", - "autoRenew" : true, - "renewalSetting" : "RENEW_WITH_SPECIFIC_TERM", - "renewalTerm" : 12, - "renewalTermPeriodType" : "Month", - "contractedMrr" : 10.00, - "totalContractedValue" : 120.00, - "notes" : null, - "status" : "Active", - "TrialPeriodPrice__c" : null, - "CanadaHandDelivery__c" : null, - "QuoteNumber__QT" : null, - "GifteeIdentityId__c" : null, - "OpportunityName__QT" : null, - "GiftNotificationEmailDate__c" : null, - "Gift_Subscription__c" : "No", - "TrialPeriodDays__c" : null, - "CreatedRequestId__c" : "a8998131-0e83-202d-0000-00000002000a", - "AcquisitionSource__c" : null, - "CreatedByCSR__c" : null, - "CASSubscriberID__c" : null, - "LastPriceChangeDate__c" : null, - "InitialPromotionCode__c" : null, - "CpqBundleJsonId__QT" : null, - "RedemptionCode__c" : null, - "QuoteType__QT" : null, - "GiftRedemptionDate__c" : null, - "QuoteBusinessType__QT" : null, - "SupplierCode__c" : null, - "legacy_cat__c" : null, - "AcquisitionCase__c" : null, - "ReaderType__c" : "Direct", - "ActivationDate__c" : null, - "UserCancellationReason__c" : null, - "OpportunityCloseDate__QT" : null, - "IPaddress__c" : null, - "IPCountry__c" : null, - "PromotionCode__c" : null, - "OriginalSubscriptionStartDate__c" : null, - "LegacyContractStartDate__c" : null, - "CancellationReason__c" : null, - "billToContact" : null, - "paymentTerm" : null, - "invoiceTemplateId" : null, - "invoiceTemplateName" : null, - "sequenceSetId" : null, - "sequenceSetName" : null, - "soldToContact" : null, - "isLatestVersion" : true, - "cancelReason" : null, - "ratePlans" : [ { - "id" : "8a12843288f6ded10188ff5fbef67bb3", - "productId" : "8a12865b8219d9b4018221061563643f", - "productName" : "Supporter Plus", - "productSku" : "ABC-00000032", - "productRatePlanId" : "8a12865b8219d9b40182210618a464ba", - "productRatePlanNumber" : null, - "ratePlanName" : "Supporter Plus Annual", - "subscriptionProductFeatures" : [ ], - "externallyManagedPlanId" : null, - "subscriptionRatePlanNumber" : null, - "ratePlanCharges" : [ { - "id" : "8a12843288f6ded10188ff5fbf027bb4", - "originalChargeId" : "8a12843288f6ded10188ff5fbf027bb4", - "productRatePlanChargeId" : "8a12865b8219d9b40182210618c664c1", - "number" : "C-04411538", - "name" : "Supporter Plus Annual Charge", - "productRatePlanChargeNumber" : null, - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "version" : 1, - "pricingSummary" : "GBP120", - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "currency" : "GBP", - "price" : 120.000000000, - "tiers" : null, - "chargeModelConfiguration" : null, - "inputArgumentId" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "discountApplyDetails" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "billingPeriod" : "Annual", - "specificBillingPeriod" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriodAlignment" : "AlignToTermStart", - "quantity" : 1.000000000, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedUnitsCreditRates" : null, - "usageRecordRatingOption" : null, - "segment" : 1, - "effectiveStartDate" : "2023-06-28", - "effectiveEndDate" : "2024-06-28", - "processedThroughDate" : "2023-06-28", - "chargedThroughDate" : "2024-06-28", - "done" : false, - "triggerDate" : null, - "triggerEvent" : "CustomerAcceptance", - "endDateCondition" : "Subscription_End", - "upToPeriodsType" : null, - "upToPeriods" : null, - "specificEndDate" : null, - "mrr" : 10.000000000, - "dmrc" : 10.000000000, - "tcv" : 120.000000000, - "dtcv" : 120.000000000, - "originalOrderDate" : "2023-06-28", - "amendedByOrderOn" : null, - "description" : "", - "HolidayStart__c" : null, - "HolidayEnd__c" : null, - "ForceSync__c" : null - } ] - } ], - "externallyManagedBy" : null, - "statusHistory" : [ { - "startDate" : "2023-06-28", - "endDate" : "2024-06-28", - "status" : "Active" - }, { - "startDate" : "2024-06-28", - "endDate" : null, - "status" : "OutOfTerm" - } ] -} \ No newline at end of file diff --git a/lambda/src/test/resources/Migrations/SupporterPlus2023V1V2/annual-standard/account.json b/lambda/src/test/resources/Migrations/SupporterPlus2023V1V2/annual-standard/account.json deleted file mode 100644 index 50e7417e..00000000 --- a/lambda/src/test/resources/Migrations/SupporterPlus2023V1V2/annual-standard/account.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "basicInfo" : { - "id" : "ACCOUNT-ID", - "name" : "0010J00001gz4tmQAA", - "accountNumber" : "ACCOUNT-NUMBER", - "notes" : null, - "status" : "Active", - "crmId" : "0010J00001gz4tmQAA", - "batch" : "Batch1", - "invoiceTemplateId" : "2c92a0fb49377eae014951ca848e074b", - "communicationProfileId" : null, - "purchaseOrderNumber" : null, - "customerServiceRepName" : null, - "IdentityId__c" : "IDENTITY-ID-C", - "sfContactId__c" : "SFCONTACT-ID-C", - "CCURN__c" : null, - "SpecialDeliveryInstructions__c" : null, - "NonStandardDataReason__c" : null, - "ProcessingAdvice__c" : "NoAdvice", - "CreatedRequestId__c" : "f37f1a11-4fd0-1e38-0000-00000004eabd", - "RetryStatus__c" : null, - "salesRep" : null, - "sequenceSetId" : null - }, - "billingAndPayment" : null, - "metrics" : { - "balance" : 0.000000000, - "totalInvoiceBalance" : 0.000000000, - "creditBalance" : 0.000000000, - "contractedMrr" : 10.000000000 - }, - "billToContact" : null, - "soldToContact" : null, - "taxInfo" : { - "exemptStatus" : "No", - "exemptCertificateId" : null, - "exemptCertificateType" : null, - "exemptIssuingJurisdiction" : null, - "exemptEffectiveDate" : null, - "exemptExpirationDate" : null, - "exemptDescription" : null, - "exemptEntityUseCode" : null, - "companyCode" : null, - "VATId" : null - }, - "success" : true -} \ No newline at end of file diff --git a/lambda/src/test/resources/Migrations/SupporterPlus2023V1V2/annual-standard/catalogue.json b/lambda/src/test/resources/Migrations/SupporterPlus2023V1V2/annual-standard/catalogue.json deleted file mode 100644 index 97477fca..00000000 --- a/lambda/src/test/resources/Migrations/SupporterPlus2023V1V2/annual-standard/catalogue.json +++ /dev/null @@ -1,14191 +0,0 @@ -{ - "products" : [ { - "id" : "2c92a0fb4bb97034014bbbc561fa4fed", - "sku" : "SKU-00000013", - "name" : "Supporter", - "description" : "This is the description of the supporter membership.", - "category" : null, - "effectiveStartDate" : "2014-01-01", - "effectiveEndDate" : "2099-01-01", - "allowFeatureChanges" : false, - "ProductEnabled__c" : "True", - "Entitlements__c" : "Events:SUPPORTER", - "AcquisitionProfile__c" : "Paid", - "ProductType__c" : "Membership", - "ProductLevel__c" : "400", - "Tier__c" : "Supporter", - "productRatePlans" : [ { - "id" : "8a129ce886834fa90186a20c3ee70b6a", - "status" : "Active", - "name" : "Supporter - annual (2023 Price)", - "description" : "", - "effectiveStartDate" : "2023-03-01", - "effectiveEndDate" : "2099-01-01", - "TermType__c" : "TERMED", - "FrontendId__c" : "Yearly", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A104", - "externalIdSourceSystem" : "", - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "8a129ce886834fa90186a20c3f4f0b6c", - "name" : "Supporter Membership - Annual", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD120", "EUR95", "GBP75", "CAD120", "AUD160" ], - "pricing" : [ { - "currency" : "USD", - "price" : 120.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 95.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 75.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 120.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 160.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Annual", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : true, - "taxCode" : "Membership Global Tax", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1020", - "ProductType__c" : "Supporter", - "triggerEvent" : "ContractEffective", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Supporter", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Membership - Supporter", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "8a1287c586832d250186a2040b1548fe", - "status" : "Active", - "name" : "Supporter - monthly (2023 Price)", - "description" : "", - "effectiveStartDate" : "2023-03-01", - "effectiveEndDate" : "2099-01-01", - "TermType__c" : "TERMED", - "FrontendId__c" : "Monthly", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A101", - "externalIdSourceSystem" : "", - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "8a12800986832d1d0186a20bf5136471", - "name" : "Supporter Membership - Monthly", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD9.99", "EUR9.99", "GBP7", "CAD12.99", "AUD14.99" ], - "pricing" : [ { - "currency" : "USD", - "price" : 9.990000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 9.990000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 7.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 12.990000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 14.990000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : true, - "taxCode" : "Membership Global Tax", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1020", - "ProductType__c" : "Supporter", - "triggerEvent" : "ContractEffective", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Supporter", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Membership - Supporter", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fb4c5481db014c69f4a1e03bbd", - "status" : "Expired", - "name" : "Non Founder Supporter - annual", - "description" : "", - "effectiveStartDate" : "2015-03-31", - "effectiveEndDate" : "2023-03-02", - "TermType__c" : null, - "FrontendId__c" : "Yearly", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A104", - "externalIdSourceSystem" : "", - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fb4c5481db014c69f4a2013bbf", - "name" : "Supporter Membership - Annual", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD69", "EUR49", "GBP49", "CAD69", "AUD100" ], - "pricing" : [ { - "currency" : "USD", - "price" : 69.000000000, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 49.000000000, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 49.000000000, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 69.000000000, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 100.000000000, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Annual", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Membership Global Tax", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1020", - "ProductType__c" : "Supporter", - "triggerEvent" : "ContractEffective", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Supporter", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Membership - Supporter", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fb4bb97034014bbbc562604ff7", - "status" : "Expired", - "name" : "Supporter - annual", - "description" : "", - "effectiveStartDate" : "2014-01-01", - "effectiveEndDate" : "2015-05-02", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A104", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fb4bb97034014bbbc5626f4ff9", - "name" : "Supporter Membership - Annual", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP50" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 50.000000000, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Annual", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Membership Global Tax", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1020", - "ProductType__c" : "Supporter", - "triggerEvent" : "ContractEffective", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Supporter", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Membership - Supporter", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fb4bb97034014bbbc562114fef", - "status" : "Expired", - "name" : "Supporter - monthly", - "description" : "", - "effectiveStartDate" : "2014-01-01", - "effectiveEndDate" : "2015-05-02", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A101", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fb4bb97034014bbbc562274ff1", - "name" : "Supporter Membership - Monthly", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP5" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 5.000000000, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Membership Global Tax", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1020", - "ProductType__c" : "Supporter", - "triggerEvent" : "ContractEffective", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Supporter", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Membership - Supporter", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0f94c547592014c69f5b0ff4f7e", - "status" : "Expired", - "name" : "Non Founder Supporter - monthly", - "description" : "", - "effectiveStartDate" : "2015-03-31", - "effectiveEndDate" : "2023-03-02", - "TermType__c" : null, - "FrontendId__c" : "Monthly", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A101", - "externalIdSourceSystem" : "", - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0f94c547592014c69f5b1204f80", - "name" : "Supporter Membership - Monthly", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD6.99", "EUR4.99", "GBP5", "CAD6.99", "AUD10" ], - "pricing" : [ { - "currency" : "USD", - "price" : 6.990000000, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 4.990000000, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 5.000000000, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 6.990000000, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 10.000000000, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Membership Global Tax", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1020", - "ProductType__c" : "Supporter", - "triggerEvent" : "ContractEffective", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Supporter", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Membership - Supporter", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - } ], - "productFeatures" : [ ] - }, { - "id" : "2c92a0ff5345f9200153559c6d2a3385", - "sku" : "ABC-00000012", - "name" : "Discounts", - "description" : "Template discount rate plans", - "category" : null, - "effectiveStartDate" : "2007-03-08", - "effectiveEndDate" : "2099-03-08", - "allowFeatureChanges" : false, - "ProductEnabled__c" : null, - "Entitlements__c" : null, - "AcquisitionProfile__c" : null, - "ProductType__c" : null, - "ProductLevel__c" : null, - "Tier__c" : null, - "productRatePlans" : [ { - "id" : "8a128432880a889f01880f873d2b1b7a", - "status" : "Active", - "name" : "PM 2023 - AUD - Price Freeze - 3 months", - "description" : "", - "effectiveStartDate" : "2023-05-12", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : null, - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : null, - "externalIdSourceSystem" : "", - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "8a12989f880a9e8001880f8836a32b33", - "name" : "PM 2023 - AUD - Price Freeze - 3 months", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "0% discount", "33.29% discount" ], - "pricing" : [ { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 33.290000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 3, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : null, - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : "PRP-00000004" - }, { - "id" : "8a1290f1880a9e7401880f834fb70bce", - "status" : "Active", - "name" : "PM 2023 - CAD - Price Freeze - 3 months", - "description" : "", - "effectiveStartDate" : "2023-05-12", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : null, - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : null, - "externalIdSourceSystem" : "", - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "8a12921d880a9e7901880f841d0a5c71", - "name" : "PM 2023 - CAD - Price Freeze - 3 months", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "0% discount", "46.19% discount" ], - "pricing" : [ { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 46.190000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 3, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : null, - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : "PRP-00000003" - }, { - "id" : "8a1282d4880a889501880f817b9d5c7a", - "status" : "Active", - "name" : " PM 2023 - EUR - Price Freeze - 3 months", - "description" : "", - "effectiveStartDate" : "2023-05-12", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : null, - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : null, - "externalIdSourceSystem" : "", - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "8a128cd5880a888f01880f8229e17ceb", - "name" : " PM 2023 - EUR - Price Freeze - 3 months", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "50.5% discount", "0% discount" ], - "pricing" : [ { - "currency" : "EUR", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 50.500000000, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 3, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : null, - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : "PRP-00000002" - }, { - "id" : "8a12867b880a888901880f7f007913f6", - "status" : "Active", - "name" : "PM 2023 - USD - Price Freeze - 3 months", - "description" : "", - "effectiveStartDate" : "2023-05-12", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : null, - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : null, - "externalIdSourceSystem" : "", - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "8a129e06880a9e7c01880f7fe5ec4d06", - "name" : "PM 2023 - USD - Price Freeze - 3 months", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "30.03% discount", "0% discount" ], - "pricing" : [ { - "currency" : "USD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 30.030000000, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 3, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : null, - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : "PRP-00000001" - }, { - "id" : "8a1297638021d0d7018022d4bb3342c2", - "status" : "Active", - "name" : "PM 2022 - 13% off for 3 months - Freeze", - "description" : null, - "effectiveStartDate" : "2022-04-13", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "8a1291128021d0cf018022d4bda76fdb", - "name" : "PM 2022 - 13% off for 3 months - Freeze", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "13% discount", "13% discount", "13% discount", "13% discount", "13% discount", "13% discount" ], - "pricing" : [ { - "currency" : "USD", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 13.000000000, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 13.000000000, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 13.000000000, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 13.000000000, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 13.000000000, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 13.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 3, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : null, - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "8a12972d8021d0d3018022d4c2a36f0c", - "status" : "Active", - "name" : "PM 2022 - 18% off for 3 months - Freeze", - "description" : null, - "effectiveStartDate" : "2022-04-13", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "8a128aa88021da2d018022d4c4f06176", - "name" : "PM 2022 - 18% off for 3 months - Freeze", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "18% discount", "18% discount", "18% discount", "18% discount", "18% discount", "18% discount" ], - "pricing" : [ { - "currency" : "USD", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 18.000000000, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 18.000000000, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 18.000000000, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 18.000000000, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 18.000000000, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 18.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 3, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : null, - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "8a1295918021d0d2018022d4ca0c4aac", - "status" : "Active", - "name" : "PM 2022 - 25% off for 3 months - Freeze", - "description" : null, - "effectiveStartDate" : "2022-04-13", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "8a1295918021d0d2018022d4cb8e4ab6", - "name" : "PM 2022 - 25% off for 3 months - Freeze", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "25% discount" ], - "pricing" : [ { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 25.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 3, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : null, - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "8a128f138021d0d6018022d4c65b0384", - "status" : "Active", - "name" : "PM 2022 - 20% off for 3 months - Freeze", - "description" : null, - "effectiveStartDate" : "2022-04-13", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "8a129f6f8021d0d4018022d4c84f5545", - "name" : "PM 2022 - 20% off for 3 months - Freeze", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "20% discount" ], - "pricing" : [ { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 20.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 3, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : null, - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "8a128eda8021d0d4018022d4af5e4318", - "status" : "Active", - "name" : "PM 2022 - 7% off for 3 months - Freeze", - "description" : null, - "effectiveStartDate" : "2022-04-13", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "8a128ed88021d0e0018022d4b17e7570", - "name" : "PM 2022 - 7% off for 3 months - Freeze", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "7% discount" ], - "pricing" : [ { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 7.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 3, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : null, - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "8a128eda8021d0d4018022d4aab842f9", - "status" : "Active", - "name" : "PM 2022 - 6% off for 3 months - Freeze", - "description" : null, - "effectiveStartDate" : "2022-04-13", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "8a12972d8021d0d3018022d4ad3c6db1", - "name" : "PM 2022 - 6% off for 3 months - Freeze", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "6% discount" ], - "pricing" : [ { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 6.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 3, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : null, - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "8a128e2d8021d0d4018022d4bf72421e", - "status" : "Active", - "name" : "PM 2022 - 17% off for 3 months - Freeze", - "description" : null, - "effectiveStartDate" : "2022-04-13", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "8a1291128021d0cf018022d4c126703b", - "name" : "PM 2022 - 17% off for 3 months - Freeze", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "17% discount" ], - "pricing" : [ { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 17.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 3, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : null, - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "8a128aa88021da2d018022d4b38b613e", - "status" : "Active", - "name" : "PM 2022 - 8% off for 3 months - Freeze", - "description" : null, - "effectiveStartDate" : "2022-04-13", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "8a128b618021d0cf018022d4b554090b", - "name" : "PM 2022 - 8% off for 3 months - Freeze", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "8% discount", "8% discount", "8% discount", "8% discount", "8% discount", "8% discount" ], - "pricing" : [ { - "currency" : "USD", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 8.000000000, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 8.000000000, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 8.000000000, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 8.000000000, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 8.000000000, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 8.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 3, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : null, - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "8a128aa88021da2d018022d4a6856101", - "status" : "Active", - "name" : "PM 2022 - 5% off for 3 months - Freeze", - "description" : null, - "effectiveStartDate" : "2022-04-13", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "8a1295918021d0d2018022d4a8784983", - "name" : "PM 2022 - 5% off for 3 months - Freeze", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "5% discount" ], - "pricing" : [ { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 5.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 3, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : null, - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "8a12892d8021d0dc018022d4b6f94f05", - "status" : "Active", - "name" : "PM 2022 - 11% off for 3 months - Freeze", - "description" : null, - "effectiveStartDate" : "2022-04-13", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "8a128eda8021d0d4018022d4b9024332", - "name" : "PM 2022 - 11% off for 3 months - Freeze", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "11% discount" ], - "pricing" : [ { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 11.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 3, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : null, - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "8a12865b8021d0d9018022d2a2e52c74", - "status" : "Active", - "name" : "PM 2022 - 10% off for 12 months - Max Discount", - "description" : null, - "effectiveStartDate" : "2022-04-13", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "8a1295258021d0d3018022d2b4251038", - "name" : "PM 2022 - 10% off for 12 months - Max Discount", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "10% discount", "10% discount", "10% discount", "10% discount", "10% discount", "10% discount" ], - "pricing" : [ { - "currency" : "USD", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 10.000000000, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 10.000000000, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 10.000000000, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 10.000000000, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 10.000000000, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 10.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 12, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : null, - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "8a12801c8021d0e8018022d4a1815301", - "status" : "Active", - "name" : "PM 2022 - 4% off for 3 months - Freeze", - "description" : null, - "effectiveStartDate" : "2022-04-13", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "8a129b9c8021d0d2018022d4a4417880", - "name" : "PM 2022 - 4% off for 3 months - Freeze", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "4% discount" ], - "pricing" : [ { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 4.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 3, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : null, - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0ff74296d7201742b7daf20123d", - "status" : "Active", - "name" : "Digipack Acq Offer - 1st Payment", - "description" : "a percentage discount on Annual Digipack subscriptions, where the percentage is dependent on the billing currency. This discount is available so that our Customer Service Reps are able to provide the same level of discounting as is available on the website, to subscriptions acquired through the call centre", - "effectiveStartDate" : "2020-08-27", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : null, - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0ff74296d7201742b7daf2f123f", - "name" : "Digipack Acq Offer - 1st Payment", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "17.09% discount", "25.53% discount", "16.11% discount", "16.81% discount", "20.09% discount", "18.61% discount" ], - "pricing" : [ { - "currency" : "USD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 17.090000000, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 25.530000000, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 16.110000000, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 16.810000000, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 20.090000000, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 18.610000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 12, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0ff65c757150165c8eab88b788e", - "status" : "Expired", - "name" : "Home Delivery Adjustment charge", - "description" : "Call centre version", - "effectiveStartDate" : "2018-09-11", - "effectiveEndDate" : "2019-09-11", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0ff65c757150165c8eab8c07896", - "name" : "Adjustment charge", - "type" : "OneTime", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP0" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "One_Time", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : null, - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : null, - "billingPeriodAlignment" : null, - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : null, - "taxable" : false, - "taxCode" : "", - "taxMode" : null, - "ProductCode__c" : "P1299", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Home Delivery", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Home Delivery", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0ff64176cd40164232c8ec97661", - "status" : "Active", - "name" : "Cancellation Save Discount - 25% off for 3 months", - "description" : "", - "effectiveStartDate" : "2018-06-22", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0ff64176cd40164232c8eda7664", - "name" : "25% discount on subscription for 3 months", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "25% discount", "25% discount", "25% discount", "25% discount", "25% discount", "25% discount" ], - "pricing" : [ { - "currency" : "USD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 25.000000000, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 25.000000000, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 25.000000000, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 25.000000000, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 25.000000000, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 25.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 3, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0ff5e09bd67015e0a93efe86d2e", - "status" : "Active", - "name" : "Customer Experience Adjustment - Voucher", - "description" : "", - "effectiveStartDate" : "2016-08-01", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : "TERMED", - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0ff5e09bd67015e0a93f0026d34", - "name" : "Adjustment charge", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP0" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "DefaultFromCustomer", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : "", - "taxMode" : null, - "ProductCode__c" : "P1299", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Voucher Book", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Voucher Book", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0ff56fe33f301572314aed277fb", - "status" : "Active", - "name" : "Percentage Adjustment", - "description" : "", - "effectiveStartDate" : "2007-09-13", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fc56fe26ba01572315d66d026e", - "name" : "Adjustment charge", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "100% discount" ], - "pricing" : [ { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 100.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "DefaultFromCustomer", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : true, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Home Delivery", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Home Delivery", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0ff5345f9220153559d915d5c26", - "status" : "Active", - "name" : "Percentage", - "description" : "", - "effectiveStartDate" : "2007-03-08", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : null, - "RatePlanType__c" : "Promotion", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fd5345efa10153559e97bb76c6", - "name" : "Percentage", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "0% discount", "0% discount", "0% discount", "0% discount", "0% discount", "0% discount" ], - "pricing" : [ { - "currency" : "USD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "DefaultFromCustomer", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : null, - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fe750b35d001750d4522f43817", - "status" : "Active", - "name" : "DO NOT USE MANUALLY: Holiday credit - automated - Digital Voucher", - "description" : "Holiday credit applied automatically by the Holiday Stop Processor.\n\n*** Not for manual use! ***\n\nSee:\nhttps://github.com/guardian/support-service-lambdas/tree/master/handlers/holiday-stop-processor\n", - "effectiveStartDate" : "2020-09-14", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fe750b35d001750d4523103819", - "name" : "Holiday Credit", - "type" : "OneTime", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD0", "NZD0", "EUR0", "GBP0", "CAD0", "AUD0" ], - "pricing" : [ { - "currency" : "USD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "One_Time", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : null, - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : null, - "billingPeriodAlignment" : null, - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : null, - "taxable" : false, - "taxCode" : "Guardian Weekly", - "taxMode" : null, - "ProductCode__c" : "P1299", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fe7375d60901737c64808e4be1", - "status" : "Active", - "name" : "DO NOT USE MANUALLY: Delivery-problem credit - automated - Home Delivery", - "description" : "Credit for a delivery problem, applied automatically by the delivery-problem credit processor.\n\n*** Not for manual use! ***\n\nSee:\nTODO - reference to codebase here\n", - "effectiveStartDate" : "2020-01-13", - "effectiveEndDate" : "2099-01-01", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fe7375d60901737c6480bc4be3", - "name" : "Delivery-problem credit", - "type" : "OneTime", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD0", "NZD0", "EUR0", "GBP0", "CAD0", "AUD0" ], - "pricing" : [ { - "currency" : "USD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "One_Time", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : null, - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : null, - "billingPeriodAlignment" : null, - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : null, - "taxable" : false, - "taxCode" : "Guardian Weekly", - "taxMode" : null, - "ProductCode__c" : "P1299", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Home Delivery", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Home Delivery", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fe72c5c3480172c7f1fb545f81", - "status" : "Active", - "name" : "PM 2020 - 11% off for 3 months - Sunday Freeze", - "description" : "", - "effectiveStartDate" : "2020-06-29", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : null, - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fe72c5c3480172c7f1fb7f5f87", - "name" : "PM 2020 - 11% off for 3 months - Sunday Freeze", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "11% discount" ], - "pricing" : [ { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 11.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 3, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fe65f0ac1f0165f2189bca248c", - "status" : "Active", - "name" : "Digipack Discount - 20% off for 12 months", - "description" : "", - "effectiveStartDate" : "2018-06-22", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : null, - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fe65f0ac1f0165f2189bdf248f", - "name" : "20% discount on subscription for 12 months", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "20% discount", "20% discount", "20% discount", "20% discount", "20% discount", "20% discount" ], - "pricing" : [ { - "currency" : "USD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 20.000000000, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 20.000000000, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 20.000000000, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 20.000000000, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 20.000000000, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 20.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 12, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fe62b7edde0162dd29b8124a8e", - "status" : "Active", - "name" : "Guardian Weekly Adjustment charge", - "description" : "To fix premature refunds", - "effectiveStartDate" : "2018-04-19", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fe62b7edde0162dd29b83f4a9e", - "name" : "Adjustment charge", - "type" : "OneTime", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD0", "NZD0", "EUR0", "GBP0", "CAD0", "AUD0" ], - "pricing" : [ { - "currency" : "USD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "One_Time", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : null, - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : null, - "billingPeriodAlignment" : null, - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : null, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "Adjustment for premature refunds where the product was not removed in advance.", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fe5fe26834015fe33c70a24f50", - "status" : "Active", - "name" : "Black Friday 50% for 3 months for existing customers", - "description" : "", - "effectiveStartDate" : "2007-03-08", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : null, - "RatePlanType__c" : "Promotion", - "PromotionCode__c" : "TBC", - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fe5fe26834015fe33c70b74f52", - "name" : "Percentage", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "0% discount", "0% discount", "0% discount", "50% discount", "0% discount", "0% discount" ], - "pricing" : [ { - "currency" : "USD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 50.000000000, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 3, - "upToPeriodsType" : "Months", - "billingDay" : "DefaultFromCustomer", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : null, - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fe56fe33ff015723143e4778be", - "status" : "Active", - "name" : "Fixed Adjustment", - "description" : "", - "effectiveStartDate" : "2007-09-13", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0ff576f2f760157aec73aa34ccc", - "name" : "Adjustment charge", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP0" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "DefaultFromCustomer", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : false, - "taxCode" : "", - "taxMode" : null, - "ProductCode__c" : "P1299", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize upon invoicing", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Home Delivery", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Home Delivery", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fd6f1426ef016f18a86c515ed7", - "status" : "Active", - "name" : "Cancellation Save Discount - 20% off for 12 months", - "description" : "", - "effectiveStartDate" : "2019-12-18", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fd6f1426ef016f18a86c705ed9", - "name" : "20% discount on subscription for 12 months", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "25% discount", "25% discount", "25% discount", "20% discount", "25% discount", "25% discount" ], - "pricing" : [ { - "currency" : "USD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 25.000000000, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 25.000000000, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 25.000000000, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 20.000000000, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 25.000000000, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 25.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 12, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fc6ae918b6016b080950e96d75", - "status" : "Active", - "name" : "Guardian Weekly Holiday Credit", - "description" : "", - "effectiveStartDate" : "2019-05-30", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fc6ae918b6016b0809512f6d7f", - "name" : "Holiday Credit", - "type" : "Usage", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD0", "NZD0", "EUR0", "GBP0", "CAD0", "AUD0" ], - "pricing" : [ { - "currency" : "USD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 1, - "upToPeriodsType" : "Billing_Periods", - "billingDay" : "DefaultFromCustomer", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : "ByBillingPeriod", - "billingPeriod" : "Annual", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fc610e738901612d83fce461fd", - "status" : "Expired", - "name" : "Tabloid launch 25% off for one year for existing customers", - "description" : "", - "effectiveStartDate" : "2017-12-19", - "effectiveEndDate" : "2020-12-19", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : "GTL99C", - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fc610e738901612d85acb06a73", - "name" : "Percentage", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "25% discount" ], - "pricing" : [ { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 25.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 12, - "upToPeriodsType" : "Months", - "billingDay" : "DefaultFromCustomer", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : null, - "triggerEvent" : "CustomerAcceptance", - "description" : "25% off for one year", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fc5b42d2c9015b6259f7f40040", - "status" : "Expired", - "name" : "Guardian Weekly Holiday Credit - old", - "description" : "", - "effectiveStartDate" : "2007-08-18", - "effectiveEndDate" : "2019-05-29", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a00e6ad50f58016ad9ca59962c8c", - "name" : "Holiday Credit", - "type" : "OneTime", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD0", "NZD0", "EUR0", "GBP0", "CAD0", "AUD0" ], - "pricing" : [ { - "currency" : "USD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "One_Time", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : null, - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : null, - "billingPeriodAlignment" : null, - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : null, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a0ff5b42e3ad015b627c142f072a", - "name" : "Holiday Credit", - "type" : "Usage", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD0", "NZD0", "EUR0", "GBP0", "CAD0", "AUD0" ], - "pricing" : [ { - "currency" : "USD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 1, - "upToPeriodsType" : "Billing_Periods", - "billingDay" : "DefaultFromCustomer", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : "ByBillingPeriod", - "billingPeriod" : "Annual", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fc596d31ea01598d623a297897", - "status" : "Active", - "name" : "Home Delivery Holiday Credit v2", - "description" : "", - "effectiveStartDate" : "2007-08-18", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fc596d31ea01598d72baf33417", - "name" : "Holiday Credit", - "type" : "Usage", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP0" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "DefaultFromCustomer", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : "ByBillingPeriod", - "billingPeriod" : "Annual", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : false, - "taxCode" : "", - "taxMode" : null, - "ProductCode__c" : "P1299", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Home Delivery", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Home Delivery", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fc569c311201569dfbecb4215f", - "status" : "Expired", - "name" : "Home Delivery Holiday Credit", - "description" : "Call centre version", - "effectiveStartDate" : "2007-08-18", - "effectiveEndDate" : "2017-07-31", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fe569c441901569e03b5cc619e", - "name" : "Holiday Credit", - "type" : "OneTime", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP0" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "One_Time", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : null, - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : null, - "billingPeriodAlignment" : null, - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : null, - "taxable" : false, - "taxCode" : "", - "taxMode" : null, - "ProductCode__c" : "P1299", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Home Delivery", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Home Delivery", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0117468816901748bdb3a8c1ac4", - "status" : "Active", - "name" : "DO NOT USE MANUALLY: Holiday credit - automated - Voucher", - "description" : "Holiday credit applied automatically by the Holiday Stop Processor.\n\n*** Not for manual use! ***\n\nSee:\nhttps://github.com/guardian/support-service-lambdas/tree/master/handlers/holiday-stop-processor\n", - "effectiveStartDate" : "2020-09-14", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0117468816901748bdb3aab1ac6", - "name" : "Holiday Credit", - "type" : "OneTime", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD0", "NZD0", "EUR0", "GBP0", "CAD0", "AUD0" ], - "pricing" : [ { - "currency" : "USD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "One_Time", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : null, - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : null, - "billingPeriodAlignment" : null, - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : null, - "taxable" : false, - "taxCode" : "Guardian Weekly", - "taxMode" : null, - "ProductCode__c" : "P1299", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Voucher Book", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Voucher Book", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a01072c5c2e30172c7f0764772c9", - "status" : "Active", - "name" : "PM 2020 - 6% off for 3 months - Weekend Freeze", - "description" : "", - "effectiveStartDate" : "2020-06-29", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : null, - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a01072c5c2e30172c7f0766372cb", - "name" : "PM 2020 - 6% off for 3 months - Weekend Freeze", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "6% discount" ], - "pricing" : [ { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 6.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 3, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a01072c5c2e20172c7efe01125c6", - "status" : "Active", - "name" : "PM 2020 - 9% off for 3 months - Sixday Freeze", - "description" : "", - "effectiveStartDate" : "2020-06-29", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : null, - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a01072c5c2e20172c7efe02325ca", - "name" : "PM 2020 - 9% off for 3 months - Sixday Freeze", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "9% discount" ], - "pricing" : [ { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 9.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 3, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a01072c5c2e20172c7ee96b91a7c", - "status" : "Active", - "name" : "PM 2020 - 11% off for 3 months - Everyday Freeze", - "description" : "", - "effectiveStartDate" : "2020-06-29", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : null, - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a01072c5c2e20172c7ee96e71a7e", - "name" : "PM 2020 - 11% off for 3 months - Everyday Freeze", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "11% discount" ], - "pricing" : [ { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 11.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 3, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a00f7468817d01748bd88f0d1d6c", - "status" : "Active", - "name" : "DO NOT USE MANUALLY: Holiday credit - automated - Home Delivery", - "description" : "Holiday credit applied automatically by the Holiday Stop Processor.\n\n*** Not for manual use! ***\n\nSee:\nhttps://github.com/guardian/support-service-lambdas/tree/master/handlers/holiday-stop-processor\n", - "effectiveStartDate" : "2020-09-14", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a00f7468817d01748bd88f2e1d6e", - "name" : "Holiday Credit", - "type" : "OneTime", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD0", "NZD0", "EUR0", "GBP0", "CAD0", "AUD0" ], - "pricing" : [ { - "currency" : "USD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "One_Time", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : null, - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : null, - "billingPeriodAlignment" : null, - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : null, - "taxable" : false, - "taxCode" : "Guardian Weekly", - "taxMode" : null, - "ProductCode__c" : "P1299", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Home Delivery", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Home Delivery", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a00d6f9de7f6016f9f6f52765aa4", - "status" : "Active", - "name" : "DO NOT USE MANUALLY: Delivery-problem credit - automated - GW", - "description" : "Credit for a delivery problem, applied automatically by the delivery-problem credit processor.\n\n*** Not for manual use! ***\n\nSee:\nTODO - reference to codebase here\n", - "effectiveStartDate" : "2020-01-13", - "effectiveEndDate" : "2099-01-01", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a00d6f9de7f6016f9f6f529e5aaf", - "name" : "Delivery-problem credit", - "type" : "OneTime", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD0", "NZD0", "EUR0", "GBP0", "CAD0", "AUD0" ], - "pricing" : [ { - "currency" : "USD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "One_Time", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : null, - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : null, - "billingPeriodAlignment" : null, - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : null, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a00872c5d4770172c7f140a32d62", - "status" : "Active", - "name" : "PM 2020 - 16% off for 3 months - Saturday Freeze", - "description" : "", - "effectiveStartDate" : "2020-06-29", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : null, - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a00872c5d4770172c7f140c52d64", - "name" : "PM 2020 - 16% off for 3 months - Saturday Freeze", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "16% discount" ], - "pricing" : [ { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 16.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 3, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0086f1426d1016f18a9c71058a5", - "status" : "Active", - "name" : "Acquisition Discount - 25% off for 12 months", - "description" : "", - "effectiveStartDate" : "2019-12-18", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0086f1426d1016f18a9c73058a7", - "name" : "25% discount on subscription for 12 months", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "25% discount", "25% discount", "25% discount", "25% discount", "25% discount", "25% discount" ], - "pricing" : [ { - "currency" : "USD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 25.000000000, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 25.000000000, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 25.000000000, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 25.000000000, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 25.000000000, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 25.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 12, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0086b25c750016b32548239308d", - "status" : "Active", - "name" : "Customer Experience - Complementary 100% discount", - "description" : "Head-office use only", - "effectiveStartDate" : "2007-03-08", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : null, - "RatePlanType__c" : "Promotion", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0086b25c750016b32548256308f", - "name" : "Percentage", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "100% discount", "100% discount", "100% discount", "100% discount", "100% discount", "100% discount" ], - "pricing" : [ { - "currency" : "USD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 100.000000000, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 100.000000000, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 100.000000000, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 100.000000000, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 100.000000000, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 100.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "DefaultFromCustomer", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : null, - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a00864176ce90164232ac0d90fc1", - "status" : "Active", - "name" : "Cancellation Save Discount - 50% off for 3 months", - "description" : "", - "effectiveStartDate" : "2018-06-22", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0ff64176cd50164232c7e493410", - "name" : "50% discount on subscription for 3 months", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "50% discount", "50% discount", "50% discount", "50% discount", "50% discount", "50% discount" ], - "pricing" : [ { - "currency" : "USD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 50.000000000, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 50.000000000, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 50.000000000, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 50.000000000, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 50.000000000, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 50.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 3, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a00772c5c2e90172c7ebd62a68c4", - "status" : "Active", - "name" : "PM 2020 - 10% off for 12 months - Max Discount", - "description" : "", - "effectiveStartDate" : "2020-06-29", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : null, - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a01072c5c2e30172c7ed605b60d3", - "name" : "PM 2020 - 10% off for 12 months - Max Discount", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "10% discount", "10% discount", "10% discount", "10% discount", "10% discount" ], - "pricing" : [ { - "currency" : "USD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 10.000000000, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 10.000000000, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 10.000000000, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 10.000000000, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 10.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 12, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0076ae9189c016b080c930a6186", - "status" : "Active", - "name" : "DO NOT USE MANUALLY: Holiday credit - automated - GW", - "description" : "Holiday credit applied automatically by the Holiday Stop Processor.\n\n*** Not for manual use! ***\n\nSee:\nhttps://github.com/guardian/support-service-lambdas/tree/master/handlers/holiday-stop-processor\n", - "effectiveStartDate" : "2019-05-30", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0086ae928d7016b080f638477a6", - "name" : "Holiday Credit", - "type" : "OneTime", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD0", "NZD0", "EUR0", "GBP0", "CAD0", "AUD0" ], - "pricing" : [ { - "currency" : "USD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "One_Time", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : null, - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : null, - "billingPeriodAlignment" : null, - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : null, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "8a12902787109bb7018712c479592ee9", - "status" : "Active", - "name" : "PM 2023 - 40% off for 12 months - Freeze", - "description" : "", - "effectiveStartDate" : "2023-03-29", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : null, - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : null, - "externalIdSourceSystem" : "", - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "8a1290f187109bb0018712c5227f7842", - "name" : "PM 2023 - 40% off for 12 months - Freeze", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "40% discount", "40% discount", "40% discount", "40% discount", "40% discount", "40% discount" ], - "pricing" : [ { - "currency" : "USD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 40.000000000, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 40.000000000, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 40.000000000, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 40.000000000, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 40.000000000, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 40.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 12, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : null, - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "8a12989f87109bb0018712c33dc63674", - "status" : "Active", - "name" : "PM 2023 - 40% off for 3 months - Freeze", - "description" : "", - "effectiveStartDate" : "2023-03-29", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : null, - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : null, - "externalIdSourceSystem" : "", - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "8a12867b871080e2018712c3f4177d3d", - "name" : "PM 2023 - 40% off for 3 months - Freeze", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "40% discount", "40% discount", "40% discount", "40% discount", "40% discount", "40% discount" ], - "pricing" : [ { - "currency" : "USD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 40.000000000, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 40.000000000, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 40.000000000, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 40.000000000, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 40.000000000, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 40.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 3, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : null, - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - } ], - "productFeatures" : [ ] - }, { - "id" : "8a12865b8219d9b4018221061563643f", - "sku" : "ABC-00000032", - "name" : "Supporter Plus", - "description" : "New Support product July 2022", - "category" : null, - "effectiveStartDate" : "2013-02-16", - "effectiveEndDate" : "2099-02-03", - "allowFeatureChanges" : false, - "ProductEnabled__c" : "True", - "Entitlements__c" : null, - "AcquisitionProfile__c" : "Paid", - "ProductType__c" : "Supporter Plus", - "ProductLevel__c" : null, - "Tier__c" : null, - "productRatePlans" : [ { - "id" : "8a128ed885fc6ded018602296ace3eb8", - "status" : "Active", - "name" : "Supporter Plus V2 - Monthly", - "description" : "", - "effectiveStartDate" : "2013-03-11", - "effectiveEndDate" : "2099-01-12", - "TermType__c" : null, - "FrontendId__c" : "Monthly", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A101", - "externalIdSourceSystem" : "", - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "8a128d7085fc6dec01860234cd075270", - "name" : "Contribution", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD0", "NZD0", "EUR0", "GBP0", "CAD0", "AUD0" ], - "pricing" : [ { - "currency" : "USD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : true, - "taxCode" : "Contribution", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1015", - "ProductType__c" : "Contributor", - "triggerEvent" : "ContractEffective", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize upon invoicing", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Supporter Plus - Contribution", - "deferredRevenueAccountingCodeType" : "SalesRevenue", - "recognizedRevenueAccountingCode" : "Supporter Plus - Contribution", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "8a128ed885fc6ded018602296af13eba", - "name" : "Supporter Plus Monthly Charge", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD13", "NZD17", "EUR10", "GBP10", "CAD13", "AUD17" ], - "pricing" : [ { - "currency" : "USD", - "price" : 13.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 17.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 10.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 10.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 13.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 17.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Supporter Plus Global Tax", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1015", - "ProductType__c" : "Supporter Plus", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Supporter Plus", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Supporter Plus", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "8a128ed885fc6ded01860228f77e3d5a", - "status" : "Active", - "name" : "Supporter Plus V2 - Annual", - "description" : "", - "effectiveStartDate" : "2013-03-11", - "effectiveEndDate" : "2099-01-12", - "TermType__c" : null, - "FrontendId__c" : "Yearly", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A104", - "externalIdSourceSystem" : "", - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "8a12892d85fc6df4018602451322287f", - "name" : "Contribution", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD0", "NZD0", "EUR0", "GBP0", "CAD0", "AUD0" ], - "pricing" : [ { - "currency" : "USD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Annual", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : true, - "taxCode" : "Contribution", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1015", - "ProductType__c" : "Contributor", - "triggerEvent" : "ContractEffective", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize upon invoicing", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Supporter Plus - Contribution", - "deferredRevenueAccountingCodeType" : "SalesRevenue", - "recognizedRevenueAccountingCode" : "Supporter Plus - Contribution", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "8a128ed885fc6ded01860228f7cb3d5f", - "name" : "Supporter Plus Annual Charge", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD120", "NZD160", "EUR95", "GBP95", "CAD120", "AUD160" ], - "pricing" : [ { - "currency" : "USD", - "price" : 120.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 160.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 95.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 95.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 120.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 160.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Annual", - "billingPeriodAlignment" : "AlignToTermStart", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : true, - "taxCode" : "Supporter Plus Global Tax", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1015", - "ProductType__c" : "Supporter Plus", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Supporter Plus", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Supporter Plus", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "8a12865b8219d9b401822106192b64dc", - "status" : "Active", - "name" : "Supporter Plus Monthly", - "description" : "", - "effectiveStartDate" : "2013-03-11", - "effectiveEndDate" : "2099-01-12", - "TermType__c" : null, - "FrontendId__c" : "Monthly", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A101", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "8a12865b8219d9b401822106194e64e3", - "name" : "Supporter Plus Monthly Charge", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD13", "NZD17", "EUR10", "GBP10", "CAD13", "AUD17" ], - "pricing" : [ { - "currency" : "USD", - "price" : 13.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 17.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 10.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 10.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 13.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 17.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Supporter Plus Global Tax", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1015", - "ProductType__c" : "Supporter Plus", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Supporter Plus", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Supporter Plus", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "8a12865b8219d9b40182210618a464ba", - "status" : "Active", - "name" : "Supporter Plus Annual", - "description" : "", - "effectiveStartDate" : "2013-03-11", - "effectiveEndDate" : "2099-01-12", - "TermType__c" : null, - "FrontendId__c" : "Yearly", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A104", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "8a12865b8219d9b40182210618c664c1", - "name" : "Supporter Plus Annual Charge", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD120", "NZD160", "EUR95", "GBP95", "CAD120", "AUD160" ], - "pricing" : [ { - "currency" : "USD", - "price" : 120.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 160.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 95.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 95.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 120.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 160.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Annual", - "billingPeriodAlignment" : "AlignToTermStart", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : true, - "taxCode" : "Supporter Plus Global Tax", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1015", - "ProductType__c" : "Supporter Plus", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Supporter Plus", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Supporter Plus", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - } ], - "productFeatures" : [ ] - }, { - "id" : "2c92a0fe6619b4b901661aaf826435de", - "sku" : "ABC-00000030", - "name" : "Guardian Weekly - ROW", - "description" : "", - "category" : null, - "effectiveStartDate" : "2018-09-19", - "effectiveEndDate" : "2099-10-01", - "allowFeatureChanges" : false, - "ProductEnabled__c" : "True", - "Entitlements__c" : null, - "AcquisitionProfile__c" : "Paid", - "ProductType__c" : "Guardian Weekly", - "ProductLevel__c" : null, - "Tier__c" : null, - "productRatePlans" : [ { - "id" : "2c92a0ff79ac64e30179ae45669b3a83", - "status" : "Active", - "name" : "GW Oct 18 - Monthly - ROW", - "description" : "", - "effectiveStartDate" : "2018-09-19", - "effectiveEndDate" : "2099-09-19", - "TermType__c" : null, - "FrontendId__c" : "Monthly", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A101", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0ff79ac64e30179ae4566cb3a86", - "name" : "GW Oct 18 - Monthly - ROW", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD30", "GBP24.8" ], - "pricing" : [ { - "currency" : "USD", - "price" : 30.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 24.800000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0ff67cebd140167f0a2f66a12eb", - "status" : "Active", - "name" : "GW GIFT Oct 18 - 1 Year - ROW", - "description" : "", - "effectiveStartDate" : "2018-09-19", - "effectiveEndDate" : "2099-09-19", - "TermType__c" : null, - "FrontendId__c" : "OneYear", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A108", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0ff67cebd140167f0a2f68912ed", - "name" : "GW GIFT Oct 18 - 1 Year - ROW", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD360", "NZD530", "EUR270", "GBP297.6", "CAD345", "AUD424" ], - "pricing" : [ { - "currency" : "USD", - "price" : 360.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 530.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 270.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 297.600000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 345.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 424.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 1, - "upToPeriodsType" : "Billing_Periods", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Annual", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly Gift", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly Gift", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fe6619b4b601661ab300222651", - "status" : "Active", - "name" : "GW Oct 18 - Annual - ROW", - "description" : "", - "effectiveStartDate" : "2018-09-19", - "effectiveEndDate" : "2099-09-19", - "TermType__c" : null, - "FrontendId__c" : "Yearly", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A104", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fe6619b4b601661ab3002f2653", - "name" : "GW Oct 18 - Annual - ROW", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD360", "NZD530", "EUR270", "GBP297.6", "CAD345", "AUD424" ], - "pricing" : [ { - "currency" : "USD", - "price" : 360.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 530.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 270.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 297.600000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 345.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 424.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Annual", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0086619bf8901661ab545f51b21", - "status" : "Active", - "name" : "GW Oct 18 - Six for Six - ROW", - "description" : "", - "effectiveStartDate" : "2018-09-19", - "effectiveEndDate" : "2099-09-19", - "TermType__c" : null, - "FrontendId__c" : "SixWeeks", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A101", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0086619bf8901661ab546091b23", - "name" : "GW Oct 18 - First 6 issues - ROW", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD6", "NZD6", "EUR6", "GBP6", "CAD6", "AUD6" ], - "pricing" : [ { - "currency" : "USD", - "price" : 6.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 6.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 6.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 6.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 6.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 6.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 1, - "upToPeriodsType" : "Billing_Periods", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Specific_Weeks", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : 6, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0086619bf8901661ab02752722f", - "status" : "Active", - "name" : "GW Oct 18 - Quarterly - ROW", - "description" : "", - "effectiveStartDate" : "2018-09-19", - "effectiveEndDate" : "2099-09-19", - "TermType__c" : null, - "FrontendId__c" : "Quarterly", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A102", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0ff6619bf8b01661ab2d0396eb2", - "name" : "GW Oct 18 - Quarterly - ROW", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD90", "NZD132.5", "EUR67.5", "GBP74.4", "CAD86.25", "AUD106" ], - "pricing" : [ { - "currency" : "USD", - "price" : 90.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 132.500000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 67.500000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 74.400000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 86.250000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 106.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Quarter", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0076dd9892e016df8503e7c6c48", - "status" : "Active", - "name" : "GW GIFT Oct 18 - 3 Month - ROW", - "description" : "", - "effectiveStartDate" : "2018-09-19", - "effectiveEndDate" : "2099-09-19", - "TermType__c" : null, - "FrontendId__c" : "ThreeMonths", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A106", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0076dd9892e016df8503e936c4a", - "name" : "GW GIFT Oct 18 - 3 Month - ROW", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD90", "NZD132.5", "EUR67.5", "GBP74.4", "CAD86.25", "AUD106" ], - "pricing" : [ { - "currency" : "USD", - "price" : 90.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 132.500000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 67.500000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 74.400000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 86.250000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 106.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 1, - "upToPeriodsType" : "Billing_Periods", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Quarter", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly Gift", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly Gift", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - } ], - "productFeatures" : [ ] - }, { - "id" : "2c92a0ff6619bf8901661aa3247c4b1d", - "sku" : "ABC-00000029", - "name" : "Guardian Weekly - Domestic", - "description" : "", - "category" : null, - "effectiveStartDate" : "2018-09-18", - "effectiveEndDate" : "2099-10-01", - "allowFeatureChanges" : false, - "ProductEnabled__c" : "True", - "Entitlements__c" : null, - "AcquisitionProfile__c" : "Paid", - "ProductType__c" : "Guardian Weekly", - "ProductLevel__c" : null, - "Tier__c" : null, - "productRatePlans" : [ { - "id" : "2c92a0ff67cebd0d0167f0a1a834234e", - "status" : "Active", - "name" : "GW GIFT Oct 18 - 1 Year - Domestic", - "description" : "", - "effectiveStartDate" : "2018-09-19", - "effectiveEndDate" : "2099-09-19", - "TermType__c" : null, - "FrontendId__c" : "OneYear", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A108", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0ff67cebd0d0167f0a1a85b2350", - "name" : "GW GIFT Oct 18 - 1 Year - Domestic", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD330", "NZD546", "EUR282", "GBP165", "CAD360", "AUD432" ], - "pricing" : [ { - "currency" : "USD", - "price" : 330.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 546.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 282.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 165.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 360.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 432.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 1, - "upToPeriodsType" : "Billing_Periods", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Annual", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly Gift", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly Gift", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fe6619b4b901661aa8e66c1692", - "status" : "Active", - "name" : "GW Oct 18 - Annual - Domestic", - "description" : "", - "effectiveStartDate" : "2018-09-19", - "effectiveEndDate" : "2099-09-19", - "TermType__c" : null, - "FrontendId__c" : "Yearly", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A104", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fe6619b4b901661aa8e6811695", - "name" : "GW Oct 18 - Annual - Domestic", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD330", "NZD546", "EUR282", "GBP165", "CAD360", "AUD432" ], - "pricing" : [ { - "currency" : "USD", - "price" : 330.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 546.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 282.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 165.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 360.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 432.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Annual", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fe6619b4b301661aa494392ee2", - "status" : "Active", - "name" : "GW Oct 18 - Quarterly - Domestic", - "description" : "", - "effectiveStartDate" : "2018-09-19", - "effectiveEndDate" : "2099-09-19", - "TermType__c" : null, - "FrontendId__c" : "Quarterly", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A102", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fe6619b4b601661aa8b74e623f", - "name" : "GW Oct 18 - Quarterly - Domestic", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD82.5", "NZD136.5", "EUR70.5", "GBP41.25", "CAD90", "AUD108" ], - "pricing" : [ { - "currency" : "USD", - "price" : 82.500000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 136.500000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 70.500000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 41.250000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 90.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 108.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Quarter", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fd79ac64b00179ae3f9d474960", - "status" : "Active", - "name" : "GW Oct 18 - Monthly - Domestic", - "description" : "", - "effectiveStartDate" : "2018-09-19", - "effectiveEndDate" : "2099-09-19", - "TermType__c" : null, - "FrontendId__c" : "Monthly", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A101", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fd79ac64b00179ae3f9d704962", - "name" : "GW Oct 18 - Monthly - Domestic", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD27.5", "NZD45.5", "EUR23.5", "GBP13.75", "CAD30", "AUD36" ], - "pricing" : [ { - "currency" : "USD", - "price" : 27.500000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 45.500000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 23.500000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 13.750000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 30.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 36.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a00e6dd988e2016df85387417498", - "status" : "Active", - "name" : "GW GIFT Oct 18 - 3 Month - Domestic", - "description" : "", - "effectiveStartDate" : "2018-09-19", - "effectiveEndDate" : "2099-09-19", - "TermType__c" : null, - "FrontendId__c" : "ThreeMonths", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A106", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a00e6dd988e2016df853875d74c6", - "name" : "GW GIFT Oct 18 - 3 Month - Domestic", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD82.5", "NZD136.5", "EUR70.5", "GBP41.25", "CAD90", "AUD108" ], - "pricing" : [ { - "currency" : "USD", - "price" : 82.500000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 136.500000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 70.500000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 41.250000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 90.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 108.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 1, - "upToPeriodsType" : "Billing_Periods", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Quarter", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly Gift", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly Gift", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0086619bf8901661aaac94257fe", - "status" : "Active", - "name" : "GW Oct 18 - Six for Six - Domestic", - "description" : "", - "effectiveStartDate" : "2018-09-19", - "effectiveEndDate" : "2099-09-19", - "TermType__c" : null, - "FrontendId__c" : "SixWeeks", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A101", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0086619bf8901661aaac95d5800", - "name" : "GW Oct 18 - First 6 issues - Domestic", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD6", "NZD6", "EUR6", "GBP6", "CAD6", "AUD6" ], - "pricing" : [ { - "currency" : "USD", - "price" : 6.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 6.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 6.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 6.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 6.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 6.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 1, - "upToPeriodsType" : "Billing_Periods", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Specific_Weeks", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : 6, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - } ], - "productFeatures" : [ ] - }, { - "id" : "2c92a0fb4edd70c8014edeaa4ddb21e7", - "sku" : "ABC-00000005", - "name" : "Digital Pack", - "description" : "The Guardian & Observer Digital Pack gives you 7-day access to the Guardian & Observer daily edition for iPad, Android tablet and Kindle Fire as well as premium tier access to the iOS and Android live news apps.", - "category" : null, - "effectiveStartDate" : "2013-02-16", - "effectiveEndDate" : "2099-02-03", - "allowFeatureChanges" : false, - "ProductEnabled__c" : "True", - "Entitlements__c" : null, - "AcquisitionProfile__c" : "Paid", - "ProductType__c" : "Digital Pack", - "ProductLevel__c" : null, - "Tier__c" : null, - "productRatePlans" : [ { - "id" : "2c92a0ff73add07f0173b99f14390afc", - "status" : "Active", - "name" : "Digital Subscription Three Month Fixed - Deprecated", - "description" : "", - "effectiveStartDate" : "2020-08-01", - "effectiveEndDate" : "2099-01-01", - "TermType__c" : null, - "FrontendId__c" : "Three Month", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A102", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0ff73add07f0173b9a80a584466", - "name" : "Digital Subscription Three Month Fixed", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD60", "NZD63", "EUR45", "GBP36", "CAD63", "AUD63" ], - "pricing" : [ { - "currency" : "USD", - "price" : 60.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 63.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 45.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 36.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 63.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 63.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Quarter", - "billingPeriodAlignment" : "AlignToTermStart", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Digital Pack Global Tax", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1070", - "ProductType__c" : "Digital Pack", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Digital Subscription Gift Rule", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Digital Pack", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Digital Pack", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fb4edd70c8014edeaa4eae220a", - "status" : "Active", - "name" : "Digital Pack Monthly", - "description" : "", - "effectiveStartDate" : "2013-03-11", - "effectiveEndDate" : "2099-01-12", - "TermType__c" : null, - "FrontendId__c" : "Monthly", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A101", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fb4edd70c9014edeaa50342192", - "name" : "Digital Pack Monthly", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD19.99", "NZD23.5", "EUR14.99", "GBP11.99", "CAD21.95", "AUD21.5" ], - "pricing" : [ { - "currency" : "USD", - "price" : 19.990000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 23.500000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 14.990000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 11.990000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 21.950000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 21.500000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Digital Pack Global Tax", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1070", - "ProductType__c" : "Digital Pack", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Digital Pack", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Digital Pack", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fb4edd70c8014edeaa4e972204", - "status" : "Active", - "name" : "Digital Pack Annual", - "description" : "", - "effectiveStartDate" : "2013-03-11", - "effectiveEndDate" : "2099-01-12", - "TermType__c" : null, - "FrontendId__c" : "Yearly", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A104", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fb4edd70c9014edeaa5001218c", - "name" : "Digital Pack Annual", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD199", "NZD235", "EUR149", "GBP119", "CAD219", "AUD215" ], - "pricing" : [ { - "currency" : "USD", - "price" : 199.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 235.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 149.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 119.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 219.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 215.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Annual", - "billingPeriodAlignment" : "AlignToTermStart", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : true, - "taxCode" : "Digital Pack Global Tax", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1070", - "ProductType__c" : "Digital Pack", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Digital Pack", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Digital Pack", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fb4edd70c8014edeaa4e8521fe", - "status" : "Active", - "name" : "Digital Pack Quarterly", - "description" : "", - "effectiveStartDate" : "2013-03-11", - "effectiveEndDate" : "2099-01-12", - "TermType__c" : null, - "FrontendId__c" : "Quarterly", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A102", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fb4edd70c9014edeaa4fd42186", - "name" : "Digital Pack Quarterly", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD59.95", "NZD70.5", "EUR44.95", "GBP35.95", "CAD65.85", "AUD64.5" ], - "pricing" : [ { - "currency" : "USD", - "price" : 59.950000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 70.500000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 44.950000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 35.950000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 65.850000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 64.500000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Quarter", - "billingPeriodAlignment" : "AlignToTermStart", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Digital Pack Global Tax", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1070", - "ProductType__c" : "Digital Pack", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Digital Pack", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Digital Pack", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a00d779932ef0177a65430d30ac1", - "status" : "Active", - "name" : "Digital Subscription Three Month Fixed - One Time Charge", - "description" : "", - "effectiveStartDate" : "2020-08-01", - "effectiveEndDate" : "2099-01-01", - "TermType__c" : null, - "FrontendId__c" : "Three Month", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A106", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a00f779933030177a65881490325", - "name" : "Digital Subscription Three Month Fixed - One Time Charge", - "type" : "OneTime", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD60", "NZD63", "EUR45", "GBP36", "CAD63", "AUD63" ], - "pricing" : [ { - "currency" : "USD", - "price" : 60.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 63.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 45.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 36.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 63.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 63.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "One_Time", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : null, - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : null, - "billingPeriodAlignment" : null, - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : null, - "taxable" : true, - "taxCode" : "Digital Pack Global Tax", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1070", - "ProductType__c" : "Digital Pack", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Digital Subscription Gift Rule", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Digital Pack", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Digital Pack", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a00d71c96bac0171df3a5622740f", - "status" : "Active", - "name" : "Corporate Digital Subscription", - "description" : "", - "effectiveStartDate" : "2020-01-01", - "effectiveEndDate" : "2050-01-01", - "TermType__c" : "TERMED", - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A100", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a00871c96ba30171df3b481931a0", - "name" : "Corporate Digital Subscription", - "type" : "OneTime", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD0", "NZD0", "EUR0", "GBP0", "CAD0", "AUD0" ], - "pricing" : [ { - "currency" : "USD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "One_Time", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : null, - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : null, - "billingPeriodAlignment" : null, - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : null, - "taxable" : false, - "taxCode" : "", - "taxMode" : null, - "ProductCode__c" : "P1070", - "ProductType__c" : "Digital Pack", - "triggerEvent" : "ContractEffective", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize upon invoicing", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Digital Pack", - "deferredRevenueAccountingCodeType" : "SalesRevenue", - "recognizedRevenueAccountingCode" : "Digital Pack", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a00c77992ba70177a6596f710265", - "status" : "Active", - "name" : "Digital Subscription One Year Fixed - One Time Charge", - "description" : "", - "effectiveStartDate" : "2020-08-01", - "effectiveEndDate" : "2099-01-01", - "TermType__c" : null, - "FrontendId__c" : "One Year", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A108", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a011779932fd0177a670f43102aa", - "name" : "Digital Subscription One Year Fixed - One Time Charge", - "type" : "OneTime", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD165", "NZD175", "EUR125", "GBP99", "CAD175", "AUD175" ], - "pricing" : [ { - "currency" : "USD", - "price" : 165.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 175.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 125.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 99.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 175.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 175.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "One_Time", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : null, - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : null, - "billingPeriodAlignment" : null, - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : null, - "taxable" : true, - "taxCode" : "Digital Pack Global Tax", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1070", - "ProductType__c" : "Digital Pack", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Digital Subscription Gift Rule", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Digital Pack", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Digital Pack", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a00773adc09d0173b99e4ded7f45", - "status" : "Active", - "name" : "Digital Subscription One Year Fixed - Deprecated", - "description" : "", - "effectiveStartDate" : "2020-08-01", - "effectiveEndDate" : "2099-01-01", - "TermType__c" : null, - "FrontendId__c" : "One Year", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A104", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a00d73add0220173b9a387c62aec", - "name" : "Digital Subscription One Year Fixed", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD165", "NZD175", "EUR125", "GBP99", "CAD175", "AUD175" ], - "pricing" : [ { - "currency" : "USD", - "price" : 165.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 175.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 125.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 99.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 175.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 175.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Annual", - "billingPeriodAlignment" : "AlignToTermStart", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Digital Pack Global Tax", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1070", - "ProductType__c" : "Digital Pack", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Digital Subscription Gift Rule", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Digital Pack", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Digital Pack", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - } ], - "productFeatures" : [ ] - }, { - "id" : "2c92a00870ec598001710740c3d92eab", - "sku" : "ABC-00000031", - "name" : "Newspaper Digital Voucher", - "description" : "Newspaper Digital Voucher", - "category" : null, - "effectiveStartDate" : "2007-01-01", - "effectiveEndDate" : "2099-07-12", - "allowFeatureChanges" : false, - "ProductEnabled__c" : "True", - "Entitlements__c" : null, - "AcquisitionProfile__c" : "Paid", - "ProductType__c" : "Newspaper - Digital Voucher", - "ProductLevel__c" : null, - "Tier__c" : null, - "productRatePlans" : [ { - "id" : "2c92a00870ec598001710740d3d03035", - "status" : "Active", - "name" : "Everyday+", - "description" : "Guardian and Observer papers, plus The Guardian Daily and premium access to the Guardian Live app.", - "effectiveStartDate" : "2007-01-01", - "effectiveEndDate" : "2099-07-12", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : "34", - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A109", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a00870ec598001710740d4143037", - "name" : "Digipack", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP2" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 2.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "EVERYDAY+ Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1299", - "ProductType__c" : "Digital Pack", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740d4b8304f", - "name" : "Saturday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP10.95" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 10.950000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "EVERYDAY+ Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1222", - "ProductType__c" : "Print Saturday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher SAT", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher SAT", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740d54f3069", - "name" : "Tuesday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP7.82" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 7.820000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "EVERYDAY+ Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1212", - "ProductType__c" : "Print Tuesday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher M-F", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher M-F", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740d5fd3073", - "name" : "Monday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP7.82" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 7.820000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "EVERYDAY+ Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1212", - "ProductType__c" : "Print Monday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher M-F", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher M-F", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740d691307c", - "name" : "Thursday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP7.82" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 7.820000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "EVERYDAY+ Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1212", - "ProductType__c" : "Print Thursday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher M-F", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher M-F", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740d7493084", - "name" : "Wednesday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP7.82" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 7.820000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "EVERYDAY+ Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1212", - "ProductType__c" : "Print Wednesday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher M-F", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher M-F", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740d7e2308d", - "name" : "Sunday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP10.94" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 10.940000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "EVERYDAY+ Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1232", - "ProductType__c" : "Print Sunday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher SUN", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher SUN", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740d8873096", - "name" : "Friday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP7.82" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 7.820000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "EVERYDAY+ Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1212", - "ProductType__c" : "Print Friday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher M-F", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher M-F", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a00870ec598001710740ca532f69", - "status" : "Active", - "name" : "Sixday", - "description" : "Guardian papers", - "effectiveStartDate" : "2007-01-01", - "effectiveEndDate" : "2099-07-12", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : "30", - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A115", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a00870ec598001710740cc9b2f88", - "name" : "Thursday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP8.44" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 8.440000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Newspaper Digital Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1212", - "ProductType__c" : "Print Thursday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher M-F", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher M-F", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740cd012f90", - "name" : "Wednesday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP8.44" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 8.440000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Newspaper Digital Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1212", - "ProductType__c" : "Print Wednesday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher M-F", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher M-F", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740cd6e2fa2", - "name" : "Saturday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP11.79" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 11.790000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Newspaper Digital Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1222", - "ProductType__c" : "Print Saturday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher SAT", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher SAT", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740cb4e2f6b", - "name" : "Friday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP8.44" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 8.440000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Newspaper Digital Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1212", - "ProductType__c" : "Print Friday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher M-F", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher M-F", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740cbb32f77", - "name" : "Monday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP8.44" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 8.440000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Newspaper Digital Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1212", - "ProductType__c" : "Print Monday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher M-F", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher M-F", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740cc2c2f80", - "name" : "Tuesday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP8.44" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 8.440000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Newspaper Digital Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1212", - "ProductType__c" : "Print Tuesday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher M-F", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher M-F", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a00870ec598001710740c78d2f13", - "status" : "Active", - "name" : "Everyday", - "description" : "Guardian and Observer papers", - "effectiveStartDate" : "2007-01-01", - "effectiveEndDate" : "2099-07-12", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : "34", - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A114", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a00870ec598001710740c8c42f40", - "name" : "Thursday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP7.82" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 7.820000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Newspaper Digital Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1212", - "ProductType__c" : "Print Thursday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher M-F", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher M-F", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740c91d2f4d", - "name" : "Friday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP7.82" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 7.820000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Newspaper Digital Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1212", - "ProductType__c" : "Print Friday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher M-F", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher M-F", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740c7b82f1c", - "name" : "Monday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP7.82" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 7.820000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Newspaper Digital Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1212", - "ProductType__c" : "Print Monday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher M-F", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher M-F", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740c80f2f26", - "name" : "Tuesday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP7.82" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 7.820000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Newspaper Digital Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1212", - "ProductType__c" : "Print Tuesday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher M-F", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher M-F", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740c8652f37", - "name" : "Saturday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP10.95" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 10.950000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Newspaper Digital Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1222", - "ProductType__c" : "Print Saturday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher SAT", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher SAT", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740c9802f59", - "name" : "Wednesday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP7.82" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 7.820000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Newspaper Digital Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1212", - "ProductType__c" : "Print Wednesday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher M-F", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher M-F", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740c9d72f61", - "name" : "Sunday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP10.94" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 10.940000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Newspaper Digital Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1232", - "ProductType__c" : "Print Sunday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher SUN", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher SUN", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a00870ec598001710740d24b3022", - "status" : "Active", - "name" : "Weekend", - "description" : "Saturday Guardian and Observer papers", - "effectiveStartDate" : "2007-01-01", - "effectiveEndDate" : "2099-07-12", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : "24", - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A119", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a00870ec598001710740d28e3024", - "name" : "Saturday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP12.5" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 12.500000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Newspaper Digital Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1222", - "ProductType__c" : "Print Saturday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher SAT", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher SAT", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740d325302c", - "name" : "Sunday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP12.49" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 12.490000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Newspaper Digital Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1232", - "ProductType__c" : "Print Sunday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher SUN", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher SUN", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a00870ec598001710740c4582ead", - "status" : "Active", - "name" : "Sixday+", - "description" : "Guardian papers, plus The Guardian Daily and premium access to the Guardian Live app.", - "effectiveStartDate" : "2007-01-01", - "effectiveEndDate" : "2099-07-12", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : "31", - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A110", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a00870ec598001710740c48e2eaf", - "name" : "Thursday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP8.44" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 8.440000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "SIXDAY+ Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1212", - "ProductType__c" : "Print Thursday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher M-F", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher M-F", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740c4dc2eb7", - "name" : "Wednesday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP8.44" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 8.440000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "SIXDAY+ Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1212", - "ProductType__c" : "Print Wednesday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher M-F", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher M-F", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740c5192ebf", - "name" : "Friday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP8.44" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 8.440000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "SIXDAY+ Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1212", - "ProductType__c" : "Print Friday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher M-F", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher M-F", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740c55a2ec7", - "name" : "Saturday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP11.79" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 11.790000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "SIXDAY+ Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1222", - "ProductType__c" : "Print Saturday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher SAT", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher SAT", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740c5962ecf", - "name" : "Monday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP8.44" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 8.440000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "SIXDAY+ Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1212", - "ProductType__c" : "Print Monday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher M-F", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher M-F", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740c5cf2ed7", - "name" : "Digipack", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP2" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 2.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "SIXDAY+ Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1299", - "ProductType__c" : "Digital Pack", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740c60f2edf", - "name" : "Tuesday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP8.44" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 8.440000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "SIXDAY+ Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1212", - "ProductType__c" : "Print Tuesday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher M-F", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher M-F", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a00870ec598001710740d0d83017", - "status" : "Active", - "name" : "Sunday", - "description" : "Observer paper", - "effectiveStartDate" : "2017-03-27", - "effectiveEndDate" : "2099-07-12", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : "15", - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A118", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a00870ec598001710740d1103019", - "name" : "Sunday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP13.99" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 13.990000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Newspaper Digital Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1232", - "ProductType__c" : "Print Sunday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher SUN", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher SUN", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a00870ec598001710740cf9e3004", - "status" : "Active", - "name" : "Sunday+", - "description" : "Observer paper, plus The Guardian Daily and premium access to the Guardian Live app.", - "effectiveStartDate" : "2007-01-01", - "effectiveEndDate" : "2099-07-12", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : "11", - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A112", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a00870ec598001710740cfda3006", - "name" : "Digipack", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP10" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 10.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "SUNDAY+ Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1299", - "ProductType__c" : "Digital Pack", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740d053300f", - "name" : "Sunday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP13.99" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 13.990000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "SUNDAY+ Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1232", - "ProductType__c" : "Print Sunday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher SUN", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher SUN", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a00870ec598001710740c6672ee7", - "status" : "Active", - "name" : "Weekend+", - "description" : "Saturday Guardian and Observer papers, plus The Guardian Daily and premium access to the Guardian Live app.", - "effectiveStartDate" : "2007-01-01", - "effectiveEndDate" : "2099-07-12", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : "19", - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A113", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a00870ec598001710740c6872ee9", - "name" : "Saturday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP12.5" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 12.500000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "WEEKEND+ Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1222", - "ProductType__c" : "Print Saturday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher SAT", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher SAT", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740c6ce2ef1", - "name" : "Digipack", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP9" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 9.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "WEEKEND+ Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1299", - "ProductType__c" : "Digital Pack", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740c7132efe", - "name" : "Sunday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP12.49" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 12.490000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "WEEKEND+ Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1232", - "ProductType__c" : "Print Sunday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher SUN", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher SUN", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a00870ec598001710740cdd02fbd", - "status" : "Active", - "name" : "Saturday", - "description" : "Saturday paper", - "effectiveStartDate" : "2018-03-14", - "effectiveEndDate" : "2099-07-12", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : "15", - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A117", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a00870ec598001710740ce042fcb", - "name" : "Saturday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP13.99" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 13.990000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Newspaper Digital Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1222", - "ProductType__c" : "Print Saturday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher SAT", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher SAT", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a00870ec598001710740ce702ff0", - "status" : "Active", - "name" : "Saturday+", - "description" : "Saturday paper, plus The Guardian Daily and premium access to the Guardian Live app.", - "effectiveStartDate" : "2018-03-14", - "effectiveEndDate" : "2099-07-12", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : "11", - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A111", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a00870ec598001710740cf1e2ffc", - "name" : "Saturday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP13.99" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 13.990000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "SATURDAY+ Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1222", - "ProductType__c" : "Print Saturday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher SAT", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher SAT", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740cea02ff4", - "name" : "Digipack", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP10" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 10.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "SATURDAY+ Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1299", - "ProductType__c" : "Digital Pack", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - } ], - "productFeatures" : [ ] - }, { - "id" : "2c92a0fe5aacfabe015ad24bf6e15ff6", - "sku" : "ABC-00000028", - "name" : "Contributor", - "description" : "", - "category" : null, - "effectiveStartDate" : "2017-03-15", - "effectiveEndDate" : "2099-03-15", - "allowFeatureChanges" : false, - "ProductEnabled__c" : "True", - "Entitlements__c" : null, - "AcquisitionProfile__c" : "Paid", - "ProductType__c" : "Contribution", - "ProductLevel__c" : null, - "Tier__c" : null, - "productRatePlans" : [ { - "id" : "2c92a0fc5e1dc084015e37f58c200eea", - "status" : "Active", - "name" : "Annual Contribution", - "description" : "", - "effectiveStartDate" : "2017-03-15", - "effectiveEndDate" : "2099-03-15", - "TermType__c" : "TERMED", - "FrontendId__c" : "Annual", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A104", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fc5e1dc084015e37f58c7b0f34", - "name" : "Annual Contribution", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD60", "NZD60", "EUR60", "GBP60", "CAD5", "AUD100" ], - "pricing" : [ { - "currency" : "USD", - "price" : 60.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 60.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 60.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 60.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 5.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 100.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Annual", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : true, - "taxCode" : "Contribution", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1010", - "ProductType__c" : "Contributor", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize upon invoicing", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Contribution", - "deferredRevenueAccountingCodeType" : "SalesRevenue", - "recognizedRevenueAccountingCode" : "Contribution", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fc5aacfadd015ad24db4ff5e97", - "status" : "Active", - "name" : "Monthly Contribution", - "description" : "", - "effectiveStartDate" : "2017-03-15", - "effectiveEndDate" : "2099-03-15", - "TermType__c" : "TERMED", - "FrontendId__c" : "Monthly", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A101", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fc5aacfadd015ad250bf2c6d38", - "name" : "Monthly Contribution", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD5", "NZD5", "EUR5", "GBP5", "CAD5", "AUD10" ], - "pricing" : [ { - "currency" : "USD", - "price" : 5.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 5.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 5.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 5.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 5.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 10.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : true, - "taxCode" : "Contribution", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1010", - "ProductType__c" : "Contributor", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize upon invoicing", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Contribution", - "deferredRevenueAccountingCodeType" : "SalesRevenue", - "recognizedRevenueAccountingCode" : "Contribution", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - } ], - "productFeatures" : [ ] - }, { - "id" : "2c92a0fd57d0a9870157d73fa27c3de1", - "sku" : "ABC-00000017", - "name" : "Guardian Weekly Zone A", - "description" : "", - "category" : null, - "effectiveStartDate" : "1990-10-18", - "effectiveEndDate" : "2099-10-18", - "allowFeatureChanges" : false, - "ProductEnabled__c" : "True", - "Entitlements__c" : null, - "AcquisitionProfile__c" : "Paid", - "ProductType__c" : "Guardian Weekly", - "ProductLevel__c" : null, - "Tier__c" : null, - "productRatePlans" : [ { - "id" : "2c92a0ff5a6b5d77015a7fb38d201688", - "status" : "Active", - "name" : "Guardian Weekly 10% Discount", - "description" : "", - "effectiveStartDate" : "1991-01-01", - "effectiveEndDate" : "2099-01-01", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : null, - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A104", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0ff5a6b5d77015a7fb548381f4e", - "name" : "10% Discount", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "10% discount" ], - "pricing" : [ { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 10.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Annual", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : null, - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0ff5a5adca7015a5c51a69c7f2e", - "status" : "Active", - "name" : "Guardian Weekly 3 Years", - "description" : "", - "effectiveStartDate" : "1995-12-12", - "effectiveEndDate" : "2099-10-18", - "TermType__c" : "ONETERM", - "FrontendId__c" : "ThreeYears", - "Saving__c" : null, - "DefaultTerm__c" : "36", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A104", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0ff5a5adca7015a5c51a6ad7f30", - "name" : "Zone A 3 Years", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD720", "GBP360" ], - "pricing" : [ { - "currency" : "USD", - "price" : 720.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 360.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 1, - "upToPeriodsType" : "Billing_Periods", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Three_Years", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0ff5a5adca7015a5c4af5963efa", - "status" : "Active", - "name" : "Guardian Weekly 6 Months", - "description" : "", - "effectiveStartDate" : "1995-10-18", - "effectiveEndDate" : "2099-10-18", - "TermType__c" : null, - "FrontendId__c" : "SixMonths", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A103", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0ff5a5adca7015a5c4af5b63f01", - "name" : "Zone A 6 Months", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD120", "GBP60" ], - "pricing" : [ { - "currency" : "USD", - "price" : 120.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 60.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Semi_Annual", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0ff5a4b85e7015a4cf95d352a07", - "status" : "Active", - "name" : "Guardian Weekly 12 Issues", - "description" : "12 issues", - "effectiveStartDate" : "1995-11-13", - "effectiveEndDate" : "2099-02-14", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A102", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0ff5a4b85e7015a4cf95d472a09", - "name" : "Zone A 12 Issues", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD12", "GBP12" ], - "pricing" : [ { - "currency" : "USD", - "price" : 12.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 12.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 1, - "upToPeriodsType" : "Billing_Periods", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Specific_Weeks", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : 12, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "ContractEffective", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0ff59d9d540015a41a40b3e07d3", - "status" : "Active", - "name" : "Guardian Weekly 6 Issues", - "description" : "", - "effectiveStartDate" : "1995-02-13", - "effectiveEndDate" : "2099-02-14", - "TermType__c" : null, - "FrontendId__c" : "SixWeeks", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A101", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fe5a241e5a015a41f1c4b102c3", - "name" : "Zone A 6 Issues", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD6", "GBP6" ], - "pricing" : [ { - "currency" : "USD", - "price" : 6.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 6.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 1, - "upToPeriodsType" : "Billing_Periods", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Specific_Weeks", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : 6, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "ContractEffective", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0ff58bdf4eb0158f2ecc89c1034", - "status" : "Active", - "name" : "Guardian Weekly 1 Year", - "description" : "", - "effectiveStartDate" : "1995-12-12", - "effectiveEndDate" : "2099-10-18", - "TermType__c" : "ONETERM", - "FrontendId__c" : "OneYear", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A104", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0ff58bdf4eb0158f2ecc8ae1036", - "name" : "Zone A 1 Year", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD240", "GBP120" ], - "pricing" : [ { - "currency" : "USD", - "price" : 240.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 120.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 1, - "upToPeriodsType" : "Billing_Periods", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Annual", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0ff57d0a0b60157d741e722439a", - "status" : "Active", - "name" : "Guardian Weekly Annual", - "description" : "", - "effectiveStartDate" : "1995-10-18", - "effectiveEndDate" : "2099-10-18", - "TermType__c" : null, - "FrontendId__c" : "Yearly", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A104", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fd57d0a9870157d7510cfd66f0", - "name" : "Zone A Annual", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD240", "GBP120" ], - "pricing" : [ { - "currency" : "USD", - "price" : 240.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 120.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Annual", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fe5a6b4e98015a7fb648541d78", - "status" : "Active", - "name" : "Guardian Weekly 30% Discount", - "description" : "", - "effectiveStartDate" : "1991-01-01", - "effectiveEndDate" : "2099-01-01", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : null, - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A104", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fe5a6b4e98015a7fb648631d7a", - "name" : "30% Discount", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "30% discount" ], - "pricing" : [ { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 30.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Annual", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : null, - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fe5a6b4e98015a7fb59d9407a6", - "status" : "Active", - "name" : "Guardian Weekly 25% Discount", - "description" : "", - "effectiveStartDate" : "1991-01-01", - "effectiveEndDate" : "2099-01-01", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : null, - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A104", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fe5a6b4e98015a7fb59db107a8", - "name" : "25% Discount", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "25% discount" ], - "pricing" : [ { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 25.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Annual", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : null, - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fe5a5ad349015a5c4e3f87184c", - "status" : "Active", - "name" : "Guardian Weekly 6 Months Only", - "description" : "", - "effectiveStartDate" : "1995-12-12", - "effectiveEndDate" : "2099-10-18", - "TermType__c" : "ONETERM", - "FrontendId__c" : "SixMonthsOnly", - "Saving__c" : null, - "DefaultTerm__c" : "6", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A103", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fe5a5ad349015a5c4e3f99184f", - "name" : "Zone A 6 Months", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD120", "GBP60" ], - "pricing" : [ { - "currency" : "USD", - "price" : 120.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 60.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 6, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Semi_Annual", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fe5a5ad343015a5c50b4eb2d72", - "status" : "Active", - "name" : "Guardian Weekly 2 Years", - "description" : "", - "effectiveStartDate" : "1995-12-12", - "effectiveEndDate" : "2099-10-18", - "TermType__c" : "ONETERM", - "FrontendId__c" : "TwoYears", - "Saving__c" : null, - "DefaultTerm__c" : "24", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A104", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fe5a5ad343015a5c50b4fc2d74", - "name" : "Zone A 2 Years", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD480", "GBP240" ], - "pricing" : [ { - "currency" : "USD", - "price" : 480.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 240.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 1, - "upToPeriodsType" : "Billing_Periods", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Two_Years", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fd57d0a9870157d7412f19424f", - "status" : "Active", - "name" : "Guardian Weekly Quarterly", - "description" : "", - "effectiveStartDate" : "1995-10-18", - "effectiveEndDate" : "2099-10-18", - "TermType__c" : null, - "FrontendId__c" : "Quarterly", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A102", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0ff57d0a0b50157d752a0077624", - "name" : "Zone A Quarterly", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD60", "GBP30" ], - "pricing" : [ { - "currency" : "USD", - "price" : 60.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 30.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Quarter", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - } ], - "productFeatures" : [ ] - }, { - "id" : "2c92a0fe57d0a0c40157d74240d35541", - "sku" : "ABC-00000019", - "name" : "Guardian Weekly Zone B", - "description" : "", - "category" : null, - "effectiveStartDate" : "1996-01-01", - "effectiveEndDate" : "2099-10-18", - "allowFeatureChanges" : false, - "ProductEnabled__c" : "True", - "Entitlements__c" : null, - "AcquisitionProfile__c" : "Paid", - "ProductType__c" : "Guardian Weekly", - "ProductLevel__c" : null, - "Tier__c" : null, - "productRatePlans" : [ { - "id" : "2c92a0fe5a6b4e98015a8026d9d30b32", - "status" : "Active", - "name" : "Guardian Weekly 10% Discount", - "description" : "", - "effectiveStartDate" : "1996-10-18", - "effectiveEndDate" : "2099-10-18", - "TermType__c" : "TERMED", - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A104", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fe5a6b4e98015a8026d9e70b34", - "name" : "10% Discount", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "0% discount", "0% discount", "0% discount", "10% discount", "0% discount", "0% discount" ], - "pricing" : [ { - "currency" : "USD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 10.000000000, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Annual", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : null, - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0ff5a6b5d77015a80298bfa6e7c", - "status" : "Active", - "name" : "Guardian Weekly 30% Discount", - "description" : "", - "effectiveStartDate" : "1996-10-18", - "effectiveEndDate" : "2099-10-18", - "TermType__c" : "TERMED", - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A104", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0ff5a6b5d77015a80298c0d6e7f", - "name" : "30% Discount", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "0% discount", "0% discount", "0% discount", "30% discount", "0% discount", "0% discount" ], - "pricing" : [ { - "currency" : "USD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 30.000000000, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Annual", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : null, - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0ff5a6b5d74015a8028b15f4db4", - "status" : "Active", - "name" : "Guardian Weekly 25% Discount", - "description" : "", - "effectiveStartDate" : "1996-10-18", - "effectiveEndDate" : "2099-10-18", - "TermType__c" : "TERMED", - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A104", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0ff5a6b5d74015a8028b16f4db6", - "name" : "25% Discount", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "0% discount", "0% discount", "0% discount", "25% discount", "0% discount", "0% discount" ], - "pricing" : [ { - "currency" : "USD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 25.000000000, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Annual", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : null, - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0ff5a5adca9015a611f77db4431", - "status" : "Active", - "name" : "Guardian Weekly 3 Years", - "description" : "", - "effectiveStartDate" : "1996-10-18", - "effectiveEndDate" : "2099-10-18", - "TermType__c" : "ONETERM", - "FrontendId__c" : "ThreeYears", - "Saving__c" : null, - "DefaultTerm__c" : "36", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A104", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0ff5a5adca9015a611f77eb4436", - "name" : "Zone B 3 Years", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD720", "NZD1176", "EUR588", "GBP456", "CAD720", "AUD936" ], - "pricing" : [ { - "currency" : "USD", - "price" : 720.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 1176.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 588.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 456.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 720.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 936.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 1, - "upToPeriodsType" : "Billing_Periods", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Three_Years", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0ff5a5adca7015a611d44e01395", - "status" : "Active", - "name" : "Guardian Weekly 2 Years", - "description" : "", - "effectiveStartDate" : "1996-10-18", - "effectiveEndDate" : "2099-10-18", - "TermType__c" : "ONETERM", - "FrontendId__c" : "TwoYears", - "Saving__c" : null, - "DefaultTerm__c" : "24", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A104", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0ff5a5adca7015a611d44f21397", - "name" : "Zone B 2 Years", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD480", "NZD784", "EUR392", "GBP304", "CAD480", "AUD624" ], - "pricing" : [ { - "currency" : "USD", - "price" : 480.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 784.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 392.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 304.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 480.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 624.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 1, - "upToPeriodsType" : "Billing_Periods", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Two_Years", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fe5a5ad349015a5c61d6e05d8d", - "status" : "Active", - "name" : "Guardian Weekly 6 Months Only", - "description" : "", - "effectiveStartDate" : "1996-10-18", - "effectiveEndDate" : "2099-10-18", - "TermType__c" : "ONETERM", - "FrontendId__c" : "SixMonthsOnly", - "Saving__c" : null, - "DefaultTerm__c" : "6", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A103", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fe5a5ad349015a5c61d6f05d94", - "name" : "Zone B 6 Months", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD120", "NZD196", "EUR98", "GBP76", "CAD120", "AUD156" ], - "pricing" : [ { - "currency" : "USD", - "price" : 120.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 196.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 98.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 76.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 120.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 156.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 6, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Semi_Annual", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fe5a5ad344015a5c67b1144250", - "status" : "Active", - "name" : "Guardian Weekly 6 Issues", - "description" : "", - "effectiveStartDate" : "1996-10-18", - "effectiveEndDate" : "2099-10-18", - "TermType__c" : "ONETERM", - "FrontendId__c" : "SixWeeks", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A101", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fe5a5ad344015a5c67b1234254", - "name" : "Zone B 6 Issues", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD6", "NZD6", "EUR6", "GBP6", "CAD6", "AUD6" ], - "pricing" : [ { - "currency" : "USD", - "price" : 6.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 6.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 6.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 6.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 6.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 6.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 1, - "upToPeriodsType" : "Billing_Periods", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Specific_Weeks", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : 6, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "ContractEffective", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fe57d0a0c40157d74241005544", - "status" : "Active", - "name" : "Guardian Weekly Quarterly", - "description" : "", - "effectiveStartDate" : "1996-01-01", - "effectiveEndDate" : "2099-10-18", - "TermType__c" : "TERMED", - "FrontendId__c" : "Quarterly", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A102", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fd57d0a9230157d75a5e377221", - "name" : "Zone B Quarterly", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD60", "NZD98", "EUR49", "GBP38", "CAD60", "AUD78" ], - "pricing" : [ { - "currency" : "USD", - "price" : 60.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 98.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 49.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 38.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 60.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 78.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Quarter", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fe57d0a0c40157d74240de5543", - "status" : "Active", - "name" : "Guardian Weekly Annual", - "description" : "", - "effectiveStartDate" : "1996-10-18", - "effectiveEndDate" : "2099-10-18", - "TermType__c" : "TERMED", - "FrontendId__c" : "Yearly", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A104", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0ff57d0a0b50157d759315607c5", - "name" : "Zone B Annual", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD240", "NZD392", "EUR196", "GBP152", "CAD240", "AUD312" ], - "pricing" : [ { - "currency" : "USD", - "price" : 240.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 392.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 196.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 152.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 240.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 312.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Annual", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fd5a5adc8b015a5c690d0d1ec6", - "status" : "Active", - "name" : "Guardian Weekly 12 Issues", - "description" : "", - "effectiveStartDate" : "1996-10-18", - "effectiveEndDate" : "2099-10-18", - "TermType__c" : "ONETERM", - "FrontendId__c" : "TwelveWeeks", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A102", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fd5a5adc8b015a5c690d261ec8", - "name" : "Zone B 12 Issues", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD12", "NZD12", "EUR12", "GBP12", "CAD12", "AUD12" ], - "pricing" : [ { - "currency" : "USD", - "price" : 12.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 12.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 12.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 12.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 12.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 12.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 1, - "upToPeriodsType" : "Billing_Periods", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Specific_Weeks", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : 12, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "ContractEffective", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fd5a5adc8b015a5c65074b7c41", - "status" : "Active", - "name" : "Guardian Weekly 6 Months", - "description" : "", - "effectiveStartDate" : "1996-10-18", - "effectiveEndDate" : "2099-10-18", - "TermType__c" : "TERMED", - "FrontendId__c" : "SixMonths", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A103", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fd5a5adc8b015a5c65075e7c43", - "name" : "Zone B 6 Months", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD120", "NZD196", "EUR98", "GBP76", "CAD120", "AUD156" ], - "pricing" : [ { - "currency" : "USD", - "price" : 120.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 196.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 98.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 76.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 120.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 156.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Semi_Annual", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fd58cf57000158f30ae6d06f2a", - "status" : "Active", - "name" : "Guardian Weekly 1 Year", - "description" : "", - "effectiveStartDate" : "1996-01-01", - "effectiveEndDate" : "2099-10-18", - "TermType__c" : "ONETERM", - "FrontendId__c" : "OneYear", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A104", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fd58cf57000158f30ae6e26f2c", - "name" : "Zone B 1 Year", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD240", "NZD392", "EUR196", "GBP152", "CAD240", "AUD312" ], - "pricing" : [ { - "currency" : "USD", - "price" : 240.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 392.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 196.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 152.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 240.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 312.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 1, - "upToPeriodsType" : "Billing_Periods", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Annual", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - } ], - "productFeatures" : [ ] - } ], - "nextPage" : "/v1/catalog/products?page=2&pageSize=10", - "success" : true -} \ No newline at end of file diff --git a/lambda/src/test/resources/Migrations/SupporterPlus2023V1V2/annual-standard/invoice-preview.json b/lambda/src/test/resources/Migrations/SupporterPlus2023V1V2/annual-standard/invoice-preview.json deleted file mode 100644 index 69e7ac0a..00000000 --- a/lambda/src/test/resources/Migrations/SupporterPlus2023V1V2/annual-standard/invoice-preview.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "accountId" : "ACCOUNT-ID", - "invoiceItems" : [ { - "id" : "a03ff4511bf842eca622293ff9cbbc0e", - "subscriptionName" : "SUBSCRIPTION-NUMBER", - "subscriptionId" : "8a1288c1892f2bb001894428abb3292d", - "subscriptionNumber" : "SUBSCRIPTION-NUMBER", - "serviceStartDate" : "2024-07-02", - "serviceEndDate" : "2025-07-01", - "chargeAmount" : 120.000000000, - "chargeDescription" : "", - "chargeName" : "Supporter Plus Annual Charge", - "chargeNumber" : "C-04417974", - "chargeId" : "8a128432890171d1018914866bf70e80", - "productName" : "Supporter Plus", - "quantity" : 1, - "taxAmount" : 0.000000000, - "unitOfMeasure" : "", - "chargeDate" : "2023-07-11 09:54:23", - "chargeType" : "Recurring", - "processingType" : "Charge", - "appliedToItemId" : null - } ], - "success" : true -} \ No newline at end of file diff --git a/lambda/src/test/resources/Migrations/SupporterPlus2023V1V2/annual-standard/subscription.json b/lambda/src/test/resources/Migrations/SupporterPlus2023V1V2/annual-standard/subscription.json deleted file mode 100644 index 2be35a99..00000000 --- a/lambda/src/test/resources/Migrations/SupporterPlus2023V1V2/annual-standard/subscription.json +++ /dev/null @@ -1,159 +0,0 @@ -{ - "success" : true, - "id" : "SUBSCRIPTION-ID", - "accountId" : "ACCOUNT-ID", - "accountNumber" : "ACCOUNT-NUMBER", - "accountName" : "0010J00001gz4tmQAA", - "invoiceOwnerAccountId" : "ACCOUNT-ID", - "invoiceOwnerAccountNumber" : "ACCOUNT-NUMBER", - "invoiceOwnerAccountName" : "0010J00001gz4tmQAA", - "subscriptionNumber" : "SUBSCRIPTION-NUMBER", - "version" : 1, - "revision" : "1.0", - "termType" : "TERMED", - "invoiceSeparately" : false, - "contractEffectiveDate" : "2023-07-02", - "serviceActivationDate" : "2023-07-02", - "customerAcceptanceDate" : "2023-07-02", - "subscriptionStartDate" : "2023-07-02", - "subscriptionEndDate" : "2024-07-02", - "lastBookingDate" : "2023-07-02", - "termStartDate" : "2023-07-02", - "termEndDate" : "2024-07-02", - "initialTerm" : 12, - "initialTermPeriodType" : "Month", - "currentTerm" : 12, - "currentTermPeriodType" : "Month", - "autoRenew" : true, - "renewalSetting" : "RENEW_WITH_SPECIFIC_TERM", - "renewalTerm" : 12, - "renewalTermPeriodType" : "Month", - "contractedMrr" : 10.00, - "totalContractedValue" : 120.00, - "notes" : null, - "status" : "Active", - "TrialPeriodPrice__c" : null, - "CanadaHandDelivery__c" : null, - "QuoteNumber__QT" : null, - "GifteeIdentityId__c" : null, - "OpportunityName__QT" : null, - "GiftNotificationEmailDate__c" : null, - "Gift_Subscription__c" : "No", - "TrialPeriodDays__c" : null, - "CreatedRequestId__c" : "f37f1a11-4fd0-1e38-0000-00000004eabd", - "AcquisitionSource__c" : null, - "CreatedByCSR__c" : null, - "CASSubscriberID__c" : null, - "LastPriceChangeDate__c" : null, - "InitialPromotionCode__c" : null, - "CpqBundleJsonId__QT" : null, - "RedemptionCode__c" : null, - "QuoteType__QT" : null, - "GiftRedemptionDate__c" : null, - "QuoteBusinessType__QT" : null, - "SupplierCode__c" : null, - "legacy_cat__c" : null, - "AcquisitionCase__c" : null, - "ReaderType__c" : "Direct", - "ActivationDate__c" : null, - "UserCancellationReason__c" : null, - "OpportunityCloseDate__QT" : null, - "IPaddress__c" : null, - "IPCountry__c" : null, - "PromotionCode__c" : null, - "OriginalSubscriptionStartDate__c" : null, - "LegacyContractStartDate__c" : null, - "CancellationReason__c" : null, - "billToContact" : null, - "paymentTerm" : null, - "invoiceTemplateId" : null, - "invoiceTemplateName" : null, - "sequenceSetId" : null, - "sequenceSetName" : null, - "soldToContact" : null, - "isLatestVersion" : true, - "cancelReason" : null, - "ratePlans" : [ { - "id" : "8a128432890171d1018914866bee0e7f", - "productId" : "8a12865b8219d9b4018221061563643f", - "productName" : "Supporter Plus", - "productSku" : "ABC-00000032", - "productRatePlanId" : "8a12865b8219d9b40182210618a464ba", - "ratePlanName" : "Supporter Plus Annual", - "ratePlanCharges" : [ { - "id" : "8a128432890171d1018914866bf70e80", - "originalChargeId" : "8a128432890171d1018914866bf70e80", - "productRatePlanChargeId" : "8a12865b8219d9b40182210618c664c1", - "number" : "C-04417974", - "name" : "Supporter Plus Annual Charge", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "version" : 1, - "pricingSummary" : "USD120", - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "currency" : "USD", - "price" : 120.000000000, - "tiers" : null, - "chargeModelConfiguration" : null, - "inputArgumentId" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "discountApplyDetails" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "billingPeriod" : "Annual", - "specificBillingPeriod" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriodAlignment" : "AlignToTermStart", - "quantity" : 1.000000000, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedUnitsCreditRates" : null, - "usageRecordRatingOption" : null, - "segment" : 1, - "effectiveStartDate" : "2023-07-02", - "effectiveEndDate" : "2024-07-02", - "processedThroughDate" : "2023-07-02", - "chargedThroughDate" : "2024-07-02", - "done" : false, - "triggerDate" : null, - "triggerEvent" : "CustomerAcceptance", - "endDateCondition" : "Subscription_End", - "upToPeriodsType" : null, - "upToPeriods" : null, - "specificEndDate" : null, - "mrr" : 10.000000000, - "dmrc" : 10.000000000, - "tcv" : 120.000000000, - "dtcv" : 120.000000000, - "originalOrderDate" : "2023-07-02", - "amendedByOrderOn" : null, - "description" : "", - "HolidayStart__c" : null, - "HolidayEnd__c" : null, - "ForceSync__c" : null - } ], - "subscriptionProductFeatures" : [ ], - "externallyManagedPlanId" : null - } ], - "externallyManagedBy" : null, - "statusHistory" : [ { - "startDate" : "2023-07-02", - "endDate" : "2024-07-02", - "status" : "Active" - }, { - "startDate" : "2024-07-02", - "endDate" : null, - "status" : "OutOfTerm" - } ] -} \ No newline at end of file diff --git a/lambda/src/test/resources/Migrations/SupporterPlus2023V1V2/monthly-contribution/account.json b/lambda/src/test/resources/Migrations/SupporterPlus2023V1V2/monthly-contribution/account.json deleted file mode 100644 index 5a7f0d51..00000000 --- a/lambda/src/test/resources/Migrations/SupporterPlus2023V1V2/monthly-contribution/account.json +++ /dev/null @@ -1,57 +0,0 @@ -{ - "basicInfo" : { - "id" : "ACCOUNT-ID", - "name" : "ACCOUNT-NAME", - "accountNumber" : "ACCOUNT-NUMBER", - "notes" : null, - "status" : "Active", - "crmId" : "ACCOUNT-NAME", - "batch" : "Batch1", - "invoiceTemplateId" : "2c92a0fb49377eae014951ca848e074b", - "communicationProfileId" : null, - "purchaseOrderNumber" : null, - "customerServiceRepName" : null, - "IdentityId__c" : "16987085", - "sfContactId__c" : "0030J00001wBCeyQAG", - "CCURN__c" : null, - "SpecialDeliveryInstructions__c" : null, - "NonStandardDataReason__c" : null, - "ProcessingAdvice__c" : "NoAdvice", - "CreatedRequestId__c" : "01f7af8b-c0c7-cb9d-0000-000000003323", - "RetryStatus__c" : null, - "salesRep" : null, - "sequenceSetId" : null - }, - "billingAndPayment" : { - "billCycleDay" : 3, - "currency" : "GBP", - "paymentTerm" : "Due Upon Receipt", - "paymentGateway" : "Stripe PaymentIntents GNM Membership", - "defaultPaymentMethodId" : "8a12921d89018aaa01891bef51a11b5f", - "invoiceDeliveryPrefsPrint" : false, - "invoiceDeliveryPrefsEmail" : true, - "autoPay" : true, - "additionalEmailAddresses" : [ ] - }, - "metrics" : { - "balance" : 0.000000000, - "totalInvoiceBalance" : 0.000000000, - "creditBalance" : 0.000000000, - "contractedMrr" : 25.000000000 - }, - "billToContact" : null, - "soldToContact" : null, - "taxInfo" : { - "exemptStatus" : "No", - "exemptCertificateId" : null, - "exemptCertificateType" : null, - "exemptIssuingJurisdiction" : null, - "exemptEffectiveDate" : null, - "exemptExpirationDate" : null, - "exemptDescription" : null, - "exemptEntityUseCode" : null, - "companyCode" : null, - "VATId" : null - }, - "success" : true -} \ No newline at end of file diff --git a/lambda/src/test/resources/Migrations/SupporterPlus2023V1V2/monthly-contribution/catalogue.json b/lambda/src/test/resources/Migrations/SupporterPlus2023V1V2/monthly-contribution/catalogue.json deleted file mode 100644 index f44dbf58..00000000 --- a/lambda/src/test/resources/Migrations/SupporterPlus2023V1V2/monthly-contribution/catalogue.json +++ /dev/null @@ -1,14201 +0,0 @@ -{ - "products" : [ { - "id" : "2c92a0fb4bb97034014bbbc561fa4fed", - "sku" : "SKU-00000013", - "name" : "Supporter", - "description" : "This is the description of the supporter membership.", - "category" : null, - "effectiveStartDate" : "2014-01-01", - "effectiveEndDate" : "2099-01-01", - "productNumber" : null, - "allowFeatureChanges" : false, - "ProductEnabled__c" : "True", - "Entitlements__c" : "Events:SUPPORTER", - "AcquisitionProfile__c" : "Paid", - "ProductType__c" : "Membership", - "ProductLevel__c" : "400", - "Tier__c" : "Supporter", - "productRatePlans" : [ { - "id" : "8a129ce886834fa90186a20c3ee70b6a", - "status" : "Active", - "name" : "Supporter - annual (2023 Price)", - "description" : "", - "effectiveStartDate" : "2023-03-01", - "effectiveEndDate" : "2099-01-01", - "TermType__c" : "TERMED", - "FrontendId__c" : "Yearly", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A104", - "externalIdSourceSystem" : "", - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "8a129ce886834fa90186a20c3f4f0b6c", - "name" : "Supporter Membership - Annual", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD120", "EUR95", "GBP75", "CAD120", "AUD160" ], - "pricing" : [ { - "currency" : "USD", - "price" : 120.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 95.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 75.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 120.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 160.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Annual", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : true, - "taxCode" : "Membership Global Tax", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1020", - "ProductType__c" : "Supporter", - "triggerEvent" : "ContractEffective", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Supporter", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Membership - Supporter", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "8a1287c586832d250186a2040b1548fe", - "status" : "Active", - "name" : "Supporter - monthly (2023 Price)", - "description" : "", - "effectiveStartDate" : "2023-03-01", - "effectiveEndDate" : "2099-01-01", - "TermType__c" : "TERMED", - "FrontendId__c" : "Monthly", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A101", - "externalIdSourceSystem" : "", - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "8a12800986832d1d0186a20bf5136471", - "name" : "Supporter Membership - Monthly", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD9.99", "EUR9.99", "GBP7", "CAD12.99", "AUD14.99" ], - "pricing" : [ { - "currency" : "USD", - "price" : 9.990000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 9.990000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 7.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 12.990000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 14.990000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : true, - "taxCode" : "Membership Global Tax", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1020", - "ProductType__c" : "Supporter", - "triggerEvent" : "ContractEffective", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Supporter", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Membership - Supporter", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fb4c5481db014c69f4a1e03bbd", - "status" : "Expired", - "name" : "Non Founder Supporter - annual", - "description" : "", - "effectiveStartDate" : "2015-03-31", - "effectiveEndDate" : "2023-03-02", - "TermType__c" : null, - "FrontendId__c" : "Yearly", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A104", - "externalIdSourceSystem" : "", - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fb4c5481db014c69f4a2013bbf", - "name" : "Supporter Membership - Annual", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD69", "EUR49", "GBP49", "CAD69", "AUD100" ], - "pricing" : [ { - "currency" : "USD", - "price" : 69.000000000, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 49.000000000, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 49.000000000, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 69.000000000, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 100.000000000, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Annual", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Membership Global Tax", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1020", - "ProductType__c" : "Supporter", - "triggerEvent" : "ContractEffective", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Supporter", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Membership - Supporter", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fb4bb97034014bbbc562604ff7", - "status" : "Expired", - "name" : "Supporter - annual", - "description" : "", - "effectiveStartDate" : "2014-01-01", - "effectiveEndDate" : "2015-05-02", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A104", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fb4bb97034014bbbc5626f4ff9", - "name" : "Supporter Membership - Annual", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP50" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 50.000000000, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Annual", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Membership Global Tax", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1020", - "ProductType__c" : "Supporter", - "triggerEvent" : "ContractEffective", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Supporter", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Membership - Supporter", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fb4bb97034014bbbc562114fef", - "status" : "Expired", - "name" : "Supporter - monthly", - "description" : "", - "effectiveStartDate" : "2014-01-01", - "effectiveEndDate" : "2015-05-02", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A101", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fb4bb97034014bbbc562274ff1", - "name" : "Supporter Membership - Monthly", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP5" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 5.000000000, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Membership Global Tax", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1020", - "ProductType__c" : "Supporter", - "triggerEvent" : "ContractEffective", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Supporter", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Membership - Supporter", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0f94c547592014c69f5b0ff4f7e", - "status" : "Expired", - "name" : "Non Founder Supporter - monthly", - "description" : "", - "effectiveStartDate" : "2015-03-31", - "effectiveEndDate" : "2023-03-02", - "TermType__c" : null, - "FrontendId__c" : "Monthly", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A101", - "externalIdSourceSystem" : "", - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0f94c547592014c69f5b1204f80", - "name" : "Supporter Membership - Monthly", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD6.99", "EUR4.99", "GBP5", "CAD6.99", "AUD10" ], - "pricing" : [ { - "currency" : "USD", - "price" : 6.990000000, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 4.990000000, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 5.000000000, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 6.990000000, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 10.000000000, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Membership Global Tax", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1020", - "ProductType__c" : "Supporter", - "triggerEvent" : "ContractEffective", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Supporter", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Membership - Supporter", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - } ], - "productFeatures" : [ ] - }, { - "id" : "2c92a0ff5345f9200153559c6d2a3385", - "sku" : "ABC-00000012", - "name" : "Discounts", - "description" : "Template discount rate plans", - "category" : null, - "effectiveStartDate" : "2007-03-08", - "effectiveEndDate" : "2099-03-08", - "productNumber" : null, - "allowFeatureChanges" : false, - "ProductEnabled__c" : null, - "Entitlements__c" : null, - "AcquisitionProfile__c" : null, - "ProductType__c" : null, - "ProductLevel__c" : null, - "Tier__c" : null, - "productRatePlans" : [ { - "id" : "8a128432880a889f01880f873d2b1b7a", - "status" : "Active", - "name" : "PM 2023 - AUD - Price Freeze - 3 months", - "description" : "", - "effectiveStartDate" : "2023-05-12", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : null, - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : null, - "externalIdSourceSystem" : "", - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "8a12989f880a9e8001880f8836a32b33", - "name" : "PM 2023 - AUD - Price Freeze - 3 months", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "0% discount", "33.29% discount" ], - "pricing" : [ { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 33.290000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 3, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : null, - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : "PRP-00000004" - }, { - "id" : "8a1290f1880a9e7401880f834fb70bce", - "status" : "Active", - "name" : "PM 2023 - CAD - Price Freeze - 3 months", - "description" : "", - "effectiveStartDate" : "2023-05-12", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : null, - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : null, - "externalIdSourceSystem" : "", - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "8a12921d880a9e7901880f841d0a5c71", - "name" : "PM 2023 - CAD - Price Freeze - 3 months", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "0% discount", "46.19% discount" ], - "pricing" : [ { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 46.190000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 3, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : null, - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : "PRP-00000003" - }, { - "id" : "8a1282d4880a889501880f817b9d5c7a", - "status" : "Active", - "name" : " PM 2023 - EUR - Price Freeze - 3 months", - "description" : "", - "effectiveStartDate" : "2023-05-12", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : null, - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : null, - "externalIdSourceSystem" : "", - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "8a128cd5880a888f01880f8229e17ceb", - "name" : " PM 2023 - EUR - Price Freeze - 3 months", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "50.5% discount", "0% discount" ], - "pricing" : [ { - "currency" : "EUR", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 50.500000000, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 3, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : null, - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : "PRP-00000002" - }, { - "id" : "8a12867b880a888901880f7f007913f6", - "status" : "Active", - "name" : "PM 2023 - USD - Price Freeze - 3 months", - "description" : "", - "effectiveStartDate" : "2023-05-12", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : null, - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : null, - "externalIdSourceSystem" : "", - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "8a129e06880a9e7c01880f7fe5ec4d06", - "name" : "PM 2023 - USD - Price Freeze - 3 months", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "30.03% discount", "0% discount" ], - "pricing" : [ { - "currency" : "USD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 30.030000000, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 3, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : null, - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : "PRP-00000001" - }, { - "id" : "8a1297638021d0d7018022d4bb3342c2", - "status" : "Active", - "name" : "PM 2022 - 13% off for 3 months - Freeze", - "description" : null, - "effectiveStartDate" : "2022-04-13", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "8a1291128021d0cf018022d4bda76fdb", - "name" : "PM 2022 - 13% off for 3 months - Freeze", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "13% discount", "13% discount", "13% discount", "13% discount", "13% discount", "13% discount" ], - "pricing" : [ { - "currency" : "USD", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 13.000000000, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 13.000000000, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 13.000000000, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 13.000000000, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 13.000000000, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 13.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 3, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : null, - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "8a12972d8021d0d3018022d4c2a36f0c", - "status" : "Active", - "name" : "PM 2022 - 18% off for 3 months - Freeze", - "description" : null, - "effectiveStartDate" : "2022-04-13", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "8a128aa88021da2d018022d4c4f06176", - "name" : "PM 2022 - 18% off for 3 months - Freeze", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "18% discount", "18% discount", "18% discount", "18% discount", "18% discount", "18% discount" ], - "pricing" : [ { - "currency" : "USD", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 18.000000000, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 18.000000000, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 18.000000000, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 18.000000000, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 18.000000000, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 18.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 3, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : null, - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "8a1295918021d0d2018022d4ca0c4aac", - "status" : "Active", - "name" : "PM 2022 - 25% off for 3 months - Freeze", - "description" : null, - "effectiveStartDate" : "2022-04-13", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "8a1295918021d0d2018022d4cb8e4ab6", - "name" : "PM 2022 - 25% off for 3 months - Freeze", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "25% discount" ], - "pricing" : [ { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 25.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 3, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : null, - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "8a128f138021d0d6018022d4c65b0384", - "status" : "Active", - "name" : "PM 2022 - 20% off for 3 months - Freeze", - "description" : null, - "effectiveStartDate" : "2022-04-13", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "8a129f6f8021d0d4018022d4c84f5545", - "name" : "PM 2022 - 20% off for 3 months - Freeze", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "20% discount" ], - "pricing" : [ { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 20.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 3, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : null, - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "8a128eda8021d0d4018022d4af5e4318", - "status" : "Active", - "name" : "PM 2022 - 7% off for 3 months - Freeze", - "description" : null, - "effectiveStartDate" : "2022-04-13", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "8a128ed88021d0e0018022d4b17e7570", - "name" : "PM 2022 - 7% off for 3 months - Freeze", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "7% discount" ], - "pricing" : [ { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 7.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 3, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : null, - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "8a128eda8021d0d4018022d4aab842f9", - "status" : "Active", - "name" : "PM 2022 - 6% off for 3 months - Freeze", - "description" : null, - "effectiveStartDate" : "2022-04-13", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "8a12972d8021d0d3018022d4ad3c6db1", - "name" : "PM 2022 - 6% off for 3 months - Freeze", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "6% discount" ], - "pricing" : [ { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 6.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 3, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : null, - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "8a128e2d8021d0d4018022d4bf72421e", - "status" : "Active", - "name" : "PM 2022 - 17% off for 3 months - Freeze", - "description" : null, - "effectiveStartDate" : "2022-04-13", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "8a1291128021d0cf018022d4c126703b", - "name" : "PM 2022 - 17% off for 3 months - Freeze", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "17% discount" ], - "pricing" : [ { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 17.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 3, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : null, - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "8a128aa88021da2d018022d4b38b613e", - "status" : "Active", - "name" : "PM 2022 - 8% off for 3 months - Freeze", - "description" : null, - "effectiveStartDate" : "2022-04-13", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "8a128b618021d0cf018022d4b554090b", - "name" : "PM 2022 - 8% off for 3 months - Freeze", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "8% discount", "8% discount", "8% discount", "8% discount", "8% discount", "8% discount" ], - "pricing" : [ { - "currency" : "USD", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 8.000000000, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 8.000000000, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 8.000000000, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 8.000000000, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 8.000000000, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 8.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 3, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : null, - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "8a128aa88021da2d018022d4a6856101", - "status" : "Active", - "name" : "PM 2022 - 5% off for 3 months - Freeze", - "description" : null, - "effectiveStartDate" : "2022-04-13", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "8a1295918021d0d2018022d4a8784983", - "name" : "PM 2022 - 5% off for 3 months - Freeze", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "5% discount" ], - "pricing" : [ { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 5.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 3, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : null, - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "8a12892d8021d0dc018022d4b6f94f05", - "status" : "Active", - "name" : "PM 2022 - 11% off for 3 months - Freeze", - "description" : null, - "effectiveStartDate" : "2022-04-13", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "8a128eda8021d0d4018022d4b9024332", - "name" : "PM 2022 - 11% off for 3 months - Freeze", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "11% discount" ], - "pricing" : [ { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 11.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 3, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : null, - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "8a12865b8021d0d9018022d2a2e52c74", - "status" : "Active", - "name" : "PM 2022 - 10% off for 12 months - Max Discount", - "description" : null, - "effectiveStartDate" : "2022-04-13", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "8a1295258021d0d3018022d2b4251038", - "name" : "PM 2022 - 10% off for 12 months - Max Discount", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "10% discount", "10% discount", "10% discount", "10% discount", "10% discount", "10% discount" ], - "pricing" : [ { - "currency" : "USD", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 10.000000000, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 10.000000000, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 10.000000000, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 10.000000000, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 10.000000000, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 10.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 12, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : null, - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "8a12801c8021d0e8018022d4a1815301", - "status" : "Active", - "name" : "PM 2022 - 4% off for 3 months - Freeze", - "description" : null, - "effectiveStartDate" : "2022-04-13", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "8a129b9c8021d0d2018022d4a4417880", - "name" : "PM 2022 - 4% off for 3 months - Freeze", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "4% discount" ], - "pricing" : [ { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 4.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 3, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : null, - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0ff74296d7201742b7daf20123d", - "status" : "Active", - "name" : "Digipack Acq Offer - 1st Payment", - "description" : "a percentage discount on Annual Digipack subscriptions, where the percentage is dependent on the billing currency. This discount is available so that our Customer Service Reps are able to provide the same level of discounting as is available on the website, to subscriptions acquired through the call centre", - "effectiveStartDate" : "2020-08-27", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : null, - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0ff74296d7201742b7daf2f123f", - "name" : "Digipack Acq Offer - 1st Payment", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "17.09% discount", "25.53% discount", "16.11% discount", "16.81% discount", "20.09% discount", "18.61% discount" ], - "pricing" : [ { - "currency" : "USD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 17.090000000, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 25.530000000, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 16.110000000, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 16.810000000, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 20.090000000, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 18.610000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 12, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0ff65c757150165c8eab88b788e", - "status" : "Expired", - "name" : "Home Delivery Adjustment charge", - "description" : "Call centre version", - "effectiveStartDate" : "2018-09-11", - "effectiveEndDate" : "2019-09-11", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0ff65c757150165c8eab8c07896", - "name" : "Adjustment charge", - "type" : "OneTime", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP0" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "One_Time", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : null, - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : null, - "billingPeriodAlignment" : null, - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : null, - "taxable" : false, - "taxCode" : "", - "taxMode" : null, - "ProductCode__c" : "P1299", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Home Delivery", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Home Delivery", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0ff64176cd40164232c8ec97661", - "status" : "Active", - "name" : "Cancellation Save Discount - 25% off for 3 months", - "description" : "", - "effectiveStartDate" : "2018-06-22", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0ff64176cd40164232c8eda7664", - "name" : "25% discount on subscription for 3 months", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "25% discount", "25% discount", "25% discount", "25% discount", "25% discount", "25% discount" ], - "pricing" : [ { - "currency" : "USD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 25.000000000, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 25.000000000, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 25.000000000, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 25.000000000, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 25.000000000, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 25.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 3, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0ff5e09bd67015e0a93efe86d2e", - "status" : "Active", - "name" : "Customer Experience Adjustment - Voucher", - "description" : "", - "effectiveStartDate" : "2016-08-01", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : "TERMED", - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0ff5e09bd67015e0a93f0026d34", - "name" : "Adjustment charge", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP0" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "DefaultFromCustomer", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : "", - "taxMode" : null, - "ProductCode__c" : "P1299", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Voucher Book", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Voucher Book", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0ff56fe33f301572314aed277fb", - "status" : "Active", - "name" : "Percentage Adjustment", - "description" : "", - "effectiveStartDate" : "2007-09-13", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fc56fe26ba01572315d66d026e", - "name" : "Adjustment charge", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "100% discount" ], - "pricing" : [ { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 100.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "DefaultFromCustomer", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : true, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Home Delivery", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Home Delivery", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0ff5345f9220153559d915d5c26", - "status" : "Active", - "name" : "Percentage", - "description" : "", - "effectiveStartDate" : "2007-03-08", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : null, - "RatePlanType__c" : "Promotion", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fd5345efa10153559e97bb76c6", - "name" : "Percentage", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "0% discount", "0% discount", "0% discount", "0% discount", "0% discount", "0% discount" ], - "pricing" : [ { - "currency" : "USD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "DefaultFromCustomer", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : null, - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fe750b35d001750d4522f43817", - "status" : "Active", - "name" : "DO NOT USE MANUALLY: Holiday credit - automated - Digital Voucher", - "description" : "Holiday credit applied automatically by the Holiday Stop Processor.\n\n*** Not for manual use! ***\n\nSee:\nhttps://github.com/guardian/support-service-lambdas/tree/master/handlers/holiday-stop-processor\n", - "effectiveStartDate" : "2020-09-14", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fe750b35d001750d4523103819", - "name" : "Holiday Credit", - "type" : "OneTime", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD0", "NZD0", "EUR0", "GBP0", "CAD0", "AUD0" ], - "pricing" : [ { - "currency" : "USD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "One_Time", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : null, - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : null, - "billingPeriodAlignment" : null, - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : null, - "taxable" : false, - "taxCode" : "Guardian Weekly", - "taxMode" : null, - "ProductCode__c" : "P1299", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fe7375d60901737c64808e4be1", - "status" : "Active", - "name" : "DO NOT USE MANUALLY: Delivery-problem credit - automated - Home Delivery", - "description" : "Credit for a delivery problem, applied automatically by the delivery-problem credit processor.\n\n*** Not for manual use! ***\n\nSee:\nTODO - reference to codebase here\n", - "effectiveStartDate" : "2020-01-13", - "effectiveEndDate" : "2099-01-01", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fe7375d60901737c6480bc4be3", - "name" : "Delivery-problem credit", - "type" : "OneTime", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD0", "NZD0", "EUR0", "GBP0", "CAD0", "AUD0" ], - "pricing" : [ { - "currency" : "USD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "One_Time", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : null, - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : null, - "billingPeriodAlignment" : null, - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : null, - "taxable" : false, - "taxCode" : "Guardian Weekly", - "taxMode" : null, - "ProductCode__c" : "P1299", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Home Delivery", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Home Delivery", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fe72c5c3480172c7f1fb545f81", - "status" : "Active", - "name" : "PM 2020 - 11% off for 3 months - Sunday Freeze", - "description" : "", - "effectiveStartDate" : "2020-06-29", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : null, - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fe72c5c3480172c7f1fb7f5f87", - "name" : "PM 2020 - 11% off for 3 months - Sunday Freeze", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "11% discount" ], - "pricing" : [ { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 11.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 3, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fe65f0ac1f0165f2189bca248c", - "status" : "Active", - "name" : "Digipack Discount - 20% off for 12 months", - "description" : "", - "effectiveStartDate" : "2018-06-22", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : null, - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fe65f0ac1f0165f2189bdf248f", - "name" : "20% discount on subscription for 12 months", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "20% discount", "20% discount", "20% discount", "20% discount", "20% discount", "20% discount" ], - "pricing" : [ { - "currency" : "USD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 20.000000000, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 20.000000000, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 20.000000000, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 20.000000000, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 20.000000000, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 20.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 12, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fe62b7edde0162dd29b8124a8e", - "status" : "Active", - "name" : "Guardian Weekly Adjustment charge", - "description" : "To fix premature refunds", - "effectiveStartDate" : "2018-04-19", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fe62b7edde0162dd29b83f4a9e", - "name" : "Adjustment charge", - "type" : "OneTime", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD0", "NZD0", "EUR0", "GBP0", "CAD0", "AUD0" ], - "pricing" : [ { - "currency" : "USD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "One_Time", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : null, - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : null, - "billingPeriodAlignment" : null, - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : null, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "Adjustment for premature refunds where the product was not removed in advance.", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fe5fe26834015fe33c70a24f50", - "status" : "Active", - "name" : "Black Friday 50% for 3 months for existing customers", - "description" : "", - "effectiveStartDate" : "2007-03-08", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : null, - "RatePlanType__c" : "Promotion", - "PromotionCode__c" : "TBC", - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fe5fe26834015fe33c70b74f52", - "name" : "Percentage", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "0% discount", "0% discount", "0% discount", "50% discount", "0% discount", "0% discount" ], - "pricing" : [ { - "currency" : "USD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 50.000000000, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 3, - "upToPeriodsType" : "Months", - "billingDay" : "DefaultFromCustomer", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : null, - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fe56fe33ff015723143e4778be", - "status" : "Active", - "name" : "Fixed Adjustment", - "description" : "", - "effectiveStartDate" : "2007-09-13", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0ff576f2f760157aec73aa34ccc", - "name" : "Adjustment charge", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP0" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "DefaultFromCustomer", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : false, - "taxCode" : "", - "taxMode" : null, - "ProductCode__c" : "P1299", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize upon invoicing", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Home Delivery", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Home Delivery", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fd6f1426ef016f18a86c515ed7", - "status" : "Active", - "name" : "Cancellation Save Discount - 20% off for 12 months", - "description" : "", - "effectiveStartDate" : "2019-12-18", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fd6f1426ef016f18a86c705ed9", - "name" : "20% discount on subscription for 12 months", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "25% discount", "25% discount", "25% discount", "20% discount", "25% discount", "25% discount" ], - "pricing" : [ { - "currency" : "USD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 25.000000000, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 25.000000000, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 25.000000000, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 20.000000000, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 25.000000000, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 25.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 12, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fc6ae918b6016b080950e96d75", - "status" : "Active", - "name" : "Guardian Weekly Holiday Credit", - "description" : "", - "effectiveStartDate" : "2019-05-30", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fc6ae918b6016b0809512f6d7f", - "name" : "Holiday Credit", - "type" : "Usage", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD0", "NZD0", "EUR0", "GBP0", "CAD0", "AUD0" ], - "pricing" : [ { - "currency" : "USD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 1, - "upToPeriodsType" : "Billing_Periods", - "billingDay" : "DefaultFromCustomer", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : "ByBillingPeriod", - "billingPeriod" : "Annual", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fc610e738901612d83fce461fd", - "status" : "Expired", - "name" : "Tabloid launch 25% off for one year for existing customers", - "description" : "", - "effectiveStartDate" : "2017-12-19", - "effectiveEndDate" : "2020-12-19", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : "GTL99C", - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fc610e738901612d85acb06a73", - "name" : "Percentage", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "25% discount" ], - "pricing" : [ { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 25.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 12, - "upToPeriodsType" : "Months", - "billingDay" : "DefaultFromCustomer", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : null, - "triggerEvent" : "CustomerAcceptance", - "description" : "25% off for one year", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fc5b42d2c9015b6259f7f40040", - "status" : "Expired", - "name" : "Guardian Weekly Holiday Credit - old", - "description" : "", - "effectiveStartDate" : "2007-08-18", - "effectiveEndDate" : "2019-05-29", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a00e6ad50f58016ad9ca59962c8c", - "name" : "Holiday Credit", - "type" : "OneTime", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD0", "NZD0", "EUR0", "GBP0", "CAD0", "AUD0" ], - "pricing" : [ { - "currency" : "USD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "One_Time", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : null, - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : null, - "billingPeriodAlignment" : null, - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : null, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a0ff5b42e3ad015b627c142f072a", - "name" : "Holiday Credit", - "type" : "Usage", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD0", "NZD0", "EUR0", "GBP0", "CAD0", "AUD0" ], - "pricing" : [ { - "currency" : "USD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 1, - "upToPeriodsType" : "Billing_Periods", - "billingDay" : "DefaultFromCustomer", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : "ByBillingPeriod", - "billingPeriod" : "Annual", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fc596d31ea01598d623a297897", - "status" : "Active", - "name" : "Home Delivery Holiday Credit v2", - "description" : "", - "effectiveStartDate" : "2007-08-18", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fc596d31ea01598d72baf33417", - "name" : "Holiday Credit", - "type" : "Usage", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP0" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "DefaultFromCustomer", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : "ByBillingPeriod", - "billingPeriod" : "Annual", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : false, - "taxCode" : "", - "taxMode" : null, - "ProductCode__c" : "P1299", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Home Delivery", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Home Delivery", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fc569c311201569dfbecb4215f", - "status" : "Expired", - "name" : "Home Delivery Holiday Credit", - "description" : "Call centre version", - "effectiveStartDate" : "2007-08-18", - "effectiveEndDate" : "2017-07-31", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fe569c441901569e03b5cc619e", - "name" : "Holiday Credit", - "type" : "OneTime", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP0" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "One_Time", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : null, - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : null, - "billingPeriodAlignment" : null, - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : null, - "taxable" : false, - "taxCode" : "", - "taxMode" : null, - "ProductCode__c" : "P1299", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Home Delivery", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Home Delivery", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0117468816901748bdb3a8c1ac4", - "status" : "Active", - "name" : "DO NOT USE MANUALLY: Holiday credit - automated - Voucher", - "description" : "Holiday credit applied automatically by the Holiday Stop Processor.\n\n*** Not for manual use! ***\n\nSee:\nhttps://github.com/guardian/support-service-lambdas/tree/master/handlers/holiday-stop-processor\n", - "effectiveStartDate" : "2020-09-14", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0117468816901748bdb3aab1ac6", - "name" : "Holiday Credit", - "type" : "OneTime", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD0", "NZD0", "EUR0", "GBP0", "CAD0", "AUD0" ], - "pricing" : [ { - "currency" : "USD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "One_Time", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : null, - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : null, - "billingPeriodAlignment" : null, - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : null, - "taxable" : false, - "taxCode" : "Guardian Weekly", - "taxMode" : null, - "ProductCode__c" : "P1299", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Voucher Book", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Voucher Book", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a01072c5c2e30172c7f0764772c9", - "status" : "Active", - "name" : "PM 2020 - 6% off for 3 months - Weekend Freeze", - "description" : "", - "effectiveStartDate" : "2020-06-29", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : null, - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a01072c5c2e30172c7f0766372cb", - "name" : "PM 2020 - 6% off for 3 months - Weekend Freeze", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "6% discount" ], - "pricing" : [ { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 6.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 3, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a01072c5c2e20172c7efe01125c6", - "status" : "Active", - "name" : "PM 2020 - 9% off for 3 months - Sixday Freeze", - "description" : "", - "effectiveStartDate" : "2020-06-29", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : null, - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a01072c5c2e20172c7efe02325ca", - "name" : "PM 2020 - 9% off for 3 months - Sixday Freeze", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "9% discount" ], - "pricing" : [ { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 9.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 3, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a01072c5c2e20172c7ee96b91a7c", - "status" : "Active", - "name" : "PM 2020 - 11% off for 3 months - Everyday Freeze", - "description" : "", - "effectiveStartDate" : "2020-06-29", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : null, - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a01072c5c2e20172c7ee96e71a7e", - "name" : "PM 2020 - 11% off for 3 months - Everyday Freeze", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "11% discount" ], - "pricing" : [ { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 11.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 3, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a00f7468817d01748bd88f0d1d6c", - "status" : "Active", - "name" : "DO NOT USE MANUALLY: Holiday credit - automated - Home Delivery", - "description" : "Holiday credit applied automatically by the Holiday Stop Processor.\n\n*** Not for manual use! ***\n\nSee:\nhttps://github.com/guardian/support-service-lambdas/tree/master/handlers/holiday-stop-processor\n", - "effectiveStartDate" : "2020-09-14", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a00f7468817d01748bd88f2e1d6e", - "name" : "Holiday Credit", - "type" : "OneTime", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD0", "NZD0", "EUR0", "GBP0", "CAD0", "AUD0" ], - "pricing" : [ { - "currency" : "USD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "One_Time", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : null, - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : null, - "billingPeriodAlignment" : null, - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : null, - "taxable" : false, - "taxCode" : "Guardian Weekly", - "taxMode" : null, - "ProductCode__c" : "P1299", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Home Delivery", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Home Delivery", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a00d6f9de7f6016f9f6f52765aa4", - "status" : "Active", - "name" : "DO NOT USE MANUALLY: Delivery-problem credit - automated - GW", - "description" : "Credit for a delivery problem, applied automatically by the delivery-problem credit processor.\n\n*** Not for manual use! ***\n\nSee:\nTODO - reference to codebase here\n", - "effectiveStartDate" : "2020-01-13", - "effectiveEndDate" : "2099-01-01", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a00d6f9de7f6016f9f6f529e5aaf", - "name" : "Delivery-problem credit", - "type" : "OneTime", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD0", "NZD0", "EUR0", "GBP0", "CAD0", "AUD0" ], - "pricing" : [ { - "currency" : "USD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "One_Time", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : null, - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : null, - "billingPeriodAlignment" : null, - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : null, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a00872c5d4770172c7f140a32d62", - "status" : "Active", - "name" : "PM 2020 - 16% off for 3 months - Saturday Freeze", - "description" : "", - "effectiveStartDate" : "2020-06-29", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : null, - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a00872c5d4770172c7f140c52d64", - "name" : "PM 2020 - 16% off for 3 months - Saturday Freeze", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "16% discount" ], - "pricing" : [ { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 16.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 3, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0086f1426d1016f18a9c71058a5", - "status" : "Active", - "name" : "Acquisition Discount - 25% off for 12 months", - "description" : "", - "effectiveStartDate" : "2019-12-18", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0086f1426d1016f18a9c73058a7", - "name" : "25% discount on subscription for 12 months", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "25% discount", "25% discount", "25% discount", "25% discount", "25% discount", "25% discount" ], - "pricing" : [ { - "currency" : "USD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 25.000000000, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 25.000000000, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 25.000000000, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 25.000000000, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 25.000000000, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 25.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 12, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0086b25c750016b32548239308d", - "status" : "Active", - "name" : "Customer Experience - Complementary 100% discount", - "description" : "Head-office use only", - "effectiveStartDate" : "2007-03-08", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : null, - "RatePlanType__c" : "Promotion", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0086b25c750016b32548256308f", - "name" : "Percentage", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "100% discount", "100% discount", "100% discount", "100% discount", "100% discount", "100% discount" ], - "pricing" : [ { - "currency" : "USD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 100.000000000, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 100.000000000, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 100.000000000, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 100.000000000, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 100.000000000, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 100.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "DefaultFromCustomer", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : null, - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a00864176ce90164232ac0d90fc1", - "status" : "Active", - "name" : "Cancellation Save Discount - 50% off for 3 months", - "description" : "", - "effectiveStartDate" : "2018-06-22", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0ff64176cd50164232c7e493410", - "name" : "50% discount on subscription for 3 months", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "50% discount", "50% discount", "50% discount", "50% discount", "50% discount", "50% discount" ], - "pricing" : [ { - "currency" : "USD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 50.000000000, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 50.000000000, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 50.000000000, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 50.000000000, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 50.000000000, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 50.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 3, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a00772c5c2e90172c7ebd62a68c4", - "status" : "Active", - "name" : "PM 2020 - 10% off for 12 months - Max Discount", - "description" : "", - "effectiveStartDate" : "2020-06-29", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : null, - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a01072c5c2e30172c7ed605b60d3", - "name" : "PM 2020 - 10% off for 12 months - Max Discount", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "10% discount", "10% discount", "10% discount", "10% discount", "10% discount" ], - "pricing" : [ { - "currency" : "USD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 10.000000000, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 10.000000000, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 10.000000000, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 10.000000000, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 10.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 12, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0076ae9189c016b080c930a6186", - "status" : "Active", - "name" : "DO NOT USE MANUALLY: Holiday credit - automated - GW", - "description" : "Holiday credit applied automatically by the Holiday Stop Processor.\n\n*** Not for manual use! ***\n\nSee:\nhttps://github.com/guardian/support-service-lambdas/tree/master/handlers/holiday-stop-processor\n", - "effectiveStartDate" : "2019-05-30", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0086ae928d7016b080f638477a6", - "name" : "Holiday Credit", - "type" : "OneTime", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD0", "NZD0", "EUR0", "GBP0", "CAD0", "AUD0" ], - "pricing" : [ { - "currency" : "USD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "One_Time", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : null, - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : null, - "billingPeriodAlignment" : null, - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : null, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "8a12902787109bb7018712c479592ee9", - "status" : "Active", - "name" : "PM 2023 - 40% off for 12 months - Freeze", - "description" : "", - "effectiveStartDate" : "2023-03-29", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : null, - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : null, - "externalIdSourceSystem" : "", - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "8a1290f187109bb0018712c5227f7842", - "name" : "PM 2023 - 40% off for 12 months - Freeze", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "40% discount", "40% discount", "40% discount", "40% discount", "40% discount", "40% discount" ], - "pricing" : [ { - "currency" : "USD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 40.000000000, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 40.000000000, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 40.000000000, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 40.000000000, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 40.000000000, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 40.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 12, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : null, - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "8a12989f87109bb0018712c33dc63674", - "status" : "Active", - "name" : "PM 2023 - 40% off for 3 months - Freeze", - "description" : "", - "effectiveStartDate" : "2023-03-29", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : null, - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : null, - "externalIdSourceSystem" : "", - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "8a12867b871080e2018712c3f4177d3d", - "name" : "PM 2023 - 40% off for 3 months - Freeze", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "40% discount", "40% discount", "40% discount", "40% discount", "40% discount", "40% discount" ], - "pricing" : [ { - "currency" : "USD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 40.000000000, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 40.000000000, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 40.000000000, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 40.000000000, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 40.000000000, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 40.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 3, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : null, - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - } ], - "productFeatures" : [ ] - }, { - "id" : "8a12865b8219d9b4018221061563643f", - "sku" : "ABC-00000032", - "name" : "Supporter Plus", - "description" : "New Support product July 2022", - "category" : null, - "effectiveStartDate" : "2013-02-16", - "effectiveEndDate" : "2099-02-03", - "productNumber" : null, - "allowFeatureChanges" : false, - "ProductEnabled__c" : "True", - "Entitlements__c" : null, - "AcquisitionProfile__c" : "Paid", - "ProductType__c" : "Supporter Plus", - "ProductLevel__c" : null, - "Tier__c" : null, - "productRatePlans" : [ { - "id" : "8a12865b8219d9b401822106192b64dc", - "status" : "Expired", - "name" : "Supporter Plus Monthly", - "description" : "", - "effectiveStartDate" : "2013-03-11", - "effectiveEndDate" : "2023-07-12", - "TermType__c" : null, - "FrontendId__c" : "Monthly", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A101", - "externalIdSourceSystem" : "", - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "8a12865b8219d9b401822106194e64e3", - "name" : "Supporter Plus Monthly Charge", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD13", "NZD17", "EUR10", "GBP10", "CAD13", "AUD17" ], - "pricing" : [ { - "currency" : "USD", - "price" : 13.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 17.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 10.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 10.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 13.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 17.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Supporter Plus Global Tax", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1015", - "ProductType__c" : "Supporter Plus", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Supporter Plus", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Supporter Plus", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "8a12865b8219d9b40182210618a464ba", - "status" : "Expired", - "name" : "Supporter Plus Annual", - "description" : "", - "effectiveStartDate" : "2013-03-11", - "effectiveEndDate" : "2023-07-12", - "TermType__c" : null, - "FrontendId__c" : "Yearly", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A104", - "externalIdSourceSystem" : "", - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "8a12865b8219d9b40182210618c664c1", - "name" : "Supporter Plus Annual Charge", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD120", "NZD160", "EUR95", "GBP95", "CAD120", "AUD160" ], - "pricing" : [ { - "currency" : "USD", - "price" : 120.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 160.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 95.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 95.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 120.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 160.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Annual", - "billingPeriodAlignment" : "AlignToTermStart", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : true, - "taxCode" : "Supporter Plus Global Tax", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1015", - "ProductType__c" : "Supporter Plus", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Supporter Plus", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Supporter Plus", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "8a128ed885fc6ded018602296ace3eb8", - "status" : "Active", - "name" : "Supporter Plus V2 - Monthly", - "description" : "", - "effectiveStartDate" : "2013-03-11", - "effectiveEndDate" : "2099-01-12", - "TermType__c" : null, - "FrontendId__c" : "Monthly", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A101", - "externalIdSourceSystem" : "", - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "8a128d7085fc6dec01860234cd075270", - "name" : "Contribution", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD0", "NZD0", "EUR0", "GBP0", "CAD0", "AUD0" ], - "pricing" : [ { - "currency" : "USD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : true, - "taxCode" : "Contribution", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1015", - "ProductType__c" : "Contributor", - "triggerEvent" : "ContractEffective", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize upon invoicing", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Supporter Plus - Contribution", - "deferredRevenueAccountingCodeType" : "SalesRevenue", - "recognizedRevenueAccountingCode" : "Supporter Plus - Contribution", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "8a128ed885fc6ded018602296af13eba", - "name" : "Supporter Plus Monthly Charge", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD13", "NZD17", "EUR10", "GBP10", "CAD13", "AUD17" ], - "pricing" : [ { - "currency" : "USD", - "price" : 13.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 17.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 10.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 10.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 13.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 17.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Supporter Plus Global Tax", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1015", - "ProductType__c" : "Supporter Plus", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Supporter Plus", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Supporter Plus", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "8a128ed885fc6ded01860228f77e3d5a", - "status" : "Active", - "name" : "Supporter Plus V2 - Annual", - "description" : "", - "effectiveStartDate" : "2013-03-11", - "effectiveEndDate" : "2099-01-12", - "TermType__c" : null, - "FrontendId__c" : "Yearly", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A104", - "externalIdSourceSystem" : "", - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "8a12892d85fc6df4018602451322287f", - "name" : "Contribution", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD0", "NZD0", "EUR0", "GBP0", "CAD0", "AUD0" ], - "pricing" : [ { - "currency" : "USD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Annual", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : true, - "taxCode" : "Contribution", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1015", - "ProductType__c" : "Contributor", - "triggerEvent" : "ContractEffective", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize upon invoicing", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Supporter Plus - Contribution", - "deferredRevenueAccountingCodeType" : "SalesRevenue", - "recognizedRevenueAccountingCode" : "Supporter Plus - Contribution", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "8a128ed885fc6ded01860228f7cb3d5f", - "name" : "Supporter Plus Annual Charge", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD120", "NZD160", "EUR95", "GBP95", "CAD120", "AUD160" ], - "pricing" : [ { - "currency" : "USD", - "price" : 120.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 160.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 95.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 95.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 120.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 160.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Annual", - "billingPeriodAlignment" : "AlignToTermStart", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : true, - "taxCode" : "Supporter Plus Global Tax", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1015", - "ProductType__c" : "Supporter Plus", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Supporter Plus", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Supporter Plus", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - } ], - "productFeatures" : [ ] - }, { - "id" : "2c92a0fe6619b4b901661aaf826435de", - "sku" : "ABC-00000030", - "name" : "Guardian Weekly - ROW", - "description" : "", - "category" : null, - "effectiveStartDate" : "2018-09-19", - "effectiveEndDate" : "2099-10-01", - "productNumber" : null, - "allowFeatureChanges" : false, - "ProductEnabled__c" : "True", - "Entitlements__c" : null, - "AcquisitionProfile__c" : "Paid", - "ProductType__c" : "Guardian Weekly", - "ProductLevel__c" : null, - "Tier__c" : null, - "productRatePlans" : [ { - "id" : "2c92a0ff79ac64e30179ae45669b3a83", - "status" : "Active", - "name" : "GW Oct 18 - Monthly - ROW", - "description" : "", - "effectiveStartDate" : "2018-09-19", - "effectiveEndDate" : "2099-09-19", - "TermType__c" : null, - "FrontendId__c" : "Monthly", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A101", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0ff79ac64e30179ae4566cb3a86", - "name" : "GW Oct 18 - Monthly - ROW", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD30", "GBP24.8" ], - "pricing" : [ { - "currency" : "USD", - "price" : 30.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 24.800000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0ff67cebd140167f0a2f66a12eb", - "status" : "Active", - "name" : "GW GIFT Oct 18 - 1 Year - ROW", - "description" : "", - "effectiveStartDate" : "2018-09-19", - "effectiveEndDate" : "2099-09-19", - "TermType__c" : null, - "FrontendId__c" : "OneYear", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A108", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0ff67cebd140167f0a2f68912ed", - "name" : "GW GIFT Oct 18 - 1 Year - ROW", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD360", "NZD530", "EUR270", "GBP297.6", "CAD345", "AUD424" ], - "pricing" : [ { - "currency" : "USD", - "price" : 360.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 530.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 270.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 297.600000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 345.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 424.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 1, - "upToPeriodsType" : "Billing_Periods", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Annual", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly Gift", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly Gift", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fe6619b4b601661ab300222651", - "status" : "Active", - "name" : "GW Oct 18 - Annual - ROW", - "description" : "", - "effectiveStartDate" : "2018-09-19", - "effectiveEndDate" : "2099-09-19", - "TermType__c" : null, - "FrontendId__c" : "Yearly", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A104", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fe6619b4b601661ab3002f2653", - "name" : "GW Oct 18 - Annual - ROW", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD360", "NZD530", "EUR270", "GBP297.6", "CAD345", "AUD424" ], - "pricing" : [ { - "currency" : "USD", - "price" : 360.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 530.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 270.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 297.600000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 345.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 424.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Annual", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0086619bf8901661ab545f51b21", - "status" : "Active", - "name" : "GW Oct 18 - Six for Six - ROW", - "description" : "", - "effectiveStartDate" : "2018-09-19", - "effectiveEndDate" : "2099-09-19", - "TermType__c" : null, - "FrontendId__c" : "SixWeeks", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A101", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0086619bf8901661ab546091b23", - "name" : "GW Oct 18 - First 6 issues - ROW", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD6", "NZD6", "EUR6", "GBP6", "CAD6", "AUD6" ], - "pricing" : [ { - "currency" : "USD", - "price" : 6.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 6.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 6.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 6.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 6.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 6.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 1, - "upToPeriodsType" : "Billing_Periods", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Specific_Weeks", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : 6, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0086619bf8901661ab02752722f", - "status" : "Active", - "name" : "GW Oct 18 - Quarterly - ROW", - "description" : "", - "effectiveStartDate" : "2018-09-19", - "effectiveEndDate" : "2099-09-19", - "TermType__c" : null, - "FrontendId__c" : "Quarterly", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A102", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0ff6619bf8b01661ab2d0396eb2", - "name" : "GW Oct 18 - Quarterly - ROW", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD90", "NZD132.5", "EUR67.5", "GBP74.4", "CAD86.25", "AUD106" ], - "pricing" : [ { - "currency" : "USD", - "price" : 90.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 132.500000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 67.500000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 74.400000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 86.250000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 106.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Quarter", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0076dd9892e016df8503e7c6c48", - "status" : "Active", - "name" : "GW GIFT Oct 18 - 3 Month - ROW", - "description" : "", - "effectiveStartDate" : "2018-09-19", - "effectiveEndDate" : "2099-09-19", - "TermType__c" : null, - "FrontendId__c" : "ThreeMonths", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A106", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0076dd9892e016df8503e936c4a", - "name" : "GW GIFT Oct 18 - 3 Month - ROW", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD90", "NZD132.5", "EUR67.5", "GBP74.4", "CAD86.25", "AUD106" ], - "pricing" : [ { - "currency" : "USD", - "price" : 90.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 132.500000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 67.500000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 74.400000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 86.250000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 106.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 1, - "upToPeriodsType" : "Billing_Periods", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Quarter", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly Gift", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly Gift", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - } ], - "productFeatures" : [ ] - }, { - "id" : "2c92a0ff6619bf8901661aa3247c4b1d", - "sku" : "ABC-00000029", - "name" : "Guardian Weekly - Domestic", - "description" : "", - "category" : null, - "effectiveStartDate" : "2018-09-18", - "effectiveEndDate" : "2099-10-01", - "productNumber" : null, - "allowFeatureChanges" : false, - "ProductEnabled__c" : "True", - "Entitlements__c" : null, - "AcquisitionProfile__c" : "Paid", - "ProductType__c" : "Guardian Weekly", - "ProductLevel__c" : null, - "Tier__c" : null, - "productRatePlans" : [ { - "id" : "2c92a0ff67cebd0d0167f0a1a834234e", - "status" : "Active", - "name" : "GW GIFT Oct 18 - 1 Year - Domestic", - "description" : "", - "effectiveStartDate" : "2018-09-19", - "effectiveEndDate" : "2099-09-19", - "TermType__c" : null, - "FrontendId__c" : "OneYear", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A108", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0ff67cebd0d0167f0a1a85b2350", - "name" : "GW GIFT Oct 18 - 1 Year - Domestic", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD330", "NZD546", "EUR282", "GBP165", "CAD360", "AUD432" ], - "pricing" : [ { - "currency" : "USD", - "price" : 330.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 546.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 282.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 165.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 360.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 432.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 1, - "upToPeriodsType" : "Billing_Periods", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Annual", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly Gift", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly Gift", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fe6619b4b901661aa8e66c1692", - "status" : "Active", - "name" : "GW Oct 18 - Annual - Domestic", - "description" : "", - "effectiveStartDate" : "2018-09-19", - "effectiveEndDate" : "2099-09-19", - "TermType__c" : null, - "FrontendId__c" : "Yearly", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A104", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fe6619b4b901661aa8e6811695", - "name" : "GW Oct 18 - Annual - Domestic", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD330", "NZD546", "EUR282", "GBP165", "CAD360", "AUD432" ], - "pricing" : [ { - "currency" : "USD", - "price" : 330.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 546.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 282.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 165.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 360.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 432.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Annual", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fe6619b4b301661aa494392ee2", - "status" : "Active", - "name" : "GW Oct 18 - Quarterly - Domestic", - "description" : "", - "effectiveStartDate" : "2018-09-19", - "effectiveEndDate" : "2099-09-19", - "TermType__c" : null, - "FrontendId__c" : "Quarterly", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A102", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fe6619b4b601661aa8b74e623f", - "name" : "GW Oct 18 - Quarterly - Domestic", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD82.5", "NZD136.5", "EUR70.5", "GBP41.25", "CAD90", "AUD108" ], - "pricing" : [ { - "currency" : "USD", - "price" : 82.500000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 136.500000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 70.500000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 41.250000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 90.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 108.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Quarter", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fd79ac64b00179ae3f9d474960", - "status" : "Active", - "name" : "GW Oct 18 - Monthly - Domestic", - "description" : "", - "effectiveStartDate" : "2018-09-19", - "effectiveEndDate" : "2099-09-19", - "TermType__c" : null, - "FrontendId__c" : "Monthly", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A101", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fd79ac64b00179ae3f9d704962", - "name" : "GW Oct 18 - Monthly - Domestic", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD27.5", "NZD45.5", "EUR23.5", "GBP13.75", "CAD30", "AUD36" ], - "pricing" : [ { - "currency" : "USD", - "price" : 27.500000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 45.500000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 23.500000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 13.750000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 30.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 36.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a00e6dd988e2016df85387417498", - "status" : "Active", - "name" : "GW GIFT Oct 18 - 3 Month - Domestic", - "description" : "", - "effectiveStartDate" : "2018-09-19", - "effectiveEndDate" : "2099-09-19", - "TermType__c" : null, - "FrontendId__c" : "ThreeMonths", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A106", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a00e6dd988e2016df853875d74c6", - "name" : "GW GIFT Oct 18 - 3 Month - Domestic", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD82.5", "NZD136.5", "EUR70.5", "GBP41.25", "CAD90", "AUD108" ], - "pricing" : [ { - "currency" : "USD", - "price" : 82.500000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 136.500000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 70.500000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 41.250000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 90.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 108.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 1, - "upToPeriodsType" : "Billing_Periods", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Quarter", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly Gift", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly Gift", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0086619bf8901661aaac94257fe", - "status" : "Active", - "name" : "GW Oct 18 - Six for Six - Domestic", - "description" : "", - "effectiveStartDate" : "2018-09-19", - "effectiveEndDate" : "2099-09-19", - "TermType__c" : null, - "FrontendId__c" : "SixWeeks", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A101", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0086619bf8901661aaac95d5800", - "name" : "GW Oct 18 - First 6 issues - Domestic", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD6", "NZD6", "EUR6", "GBP6", "CAD6", "AUD6" ], - "pricing" : [ { - "currency" : "USD", - "price" : 6.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 6.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 6.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 6.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 6.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 6.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 1, - "upToPeriodsType" : "Billing_Periods", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Specific_Weeks", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : 6, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - } ], - "productFeatures" : [ ] - }, { - "id" : "2c92a0fb4edd70c8014edeaa4ddb21e7", - "sku" : "ABC-00000005", - "name" : "Digital Pack", - "description" : "The Guardian & Observer Digital Pack gives you 7-day access to the Guardian & Observer daily edition for iPad, Android tablet and Kindle Fire as well as premium tier access to the iOS and Android live news apps.", - "category" : null, - "effectiveStartDate" : "2013-02-16", - "effectiveEndDate" : "2099-02-03", - "productNumber" : null, - "allowFeatureChanges" : false, - "ProductEnabled__c" : "True", - "Entitlements__c" : null, - "AcquisitionProfile__c" : "Paid", - "ProductType__c" : "Digital Pack", - "ProductLevel__c" : null, - "Tier__c" : null, - "productRatePlans" : [ { - "id" : "2c92a0ff73add07f0173b99f14390afc", - "status" : "Active", - "name" : "Digital Subscription Three Month Fixed - Deprecated", - "description" : "", - "effectiveStartDate" : "2020-08-01", - "effectiveEndDate" : "2099-01-01", - "TermType__c" : null, - "FrontendId__c" : "Three Month", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A102", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0ff73add07f0173b9a80a584466", - "name" : "Digital Subscription Three Month Fixed", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD60", "NZD63", "EUR45", "GBP36", "CAD63", "AUD63" ], - "pricing" : [ { - "currency" : "USD", - "price" : 60.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 63.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 45.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 36.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 63.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 63.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Quarter", - "billingPeriodAlignment" : "AlignToTermStart", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Digital Pack Global Tax", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1070", - "ProductType__c" : "Digital Pack", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Digital Subscription Gift Rule", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Digital Pack", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Digital Pack", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fb4edd70c8014edeaa4eae220a", - "status" : "Active", - "name" : "Digital Pack Monthly", - "description" : "", - "effectiveStartDate" : "2013-03-11", - "effectiveEndDate" : "2099-01-12", - "TermType__c" : null, - "FrontendId__c" : "Monthly", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A101", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fb4edd70c9014edeaa50342192", - "name" : "Digital Pack Monthly", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD19.99", "NZD23.5", "EUR14.99", "GBP11.99", "CAD21.95", "AUD21.5" ], - "pricing" : [ { - "currency" : "USD", - "price" : 19.990000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 23.500000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 14.990000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 11.990000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 21.950000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 21.500000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Digital Pack Global Tax", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1070", - "ProductType__c" : "Digital Pack", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Digital Pack", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Digital Pack", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fb4edd70c8014edeaa4e972204", - "status" : "Active", - "name" : "Digital Pack Annual", - "description" : "", - "effectiveStartDate" : "2013-03-11", - "effectiveEndDate" : "2099-01-12", - "TermType__c" : null, - "FrontendId__c" : "Yearly", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A104", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fb4edd70c9014edeaa5001218c", - "name" : "Digital Pack Annual", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD199", "NZD235", "EUR149", "GBP119", "CAD219", "AUD215" ], - "pricing" : [ { - "currency" : "USD", - "price" : 199.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 235.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 149.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 119.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 219.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 215.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Annual", - "billingPeriodAlignment" : "AlignToTermStart", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : true, - "taxCode" : "Digital Pack Global Tax", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1070", - "ProductType__c" : "Digital Pack", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Digital Pack", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Digital Pack", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fb4edd70c8014edeaa4e8521fe", - "status" : "Active", - "name" : "Digital Pack Quarterly", - "description" : "", - "effectiveStartDate" : "2013-03-11", - "effectiveEndDate" : "2099-01-12", - "TermType__c" : null, - "FrontendId__c" : "Quarterly", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A102", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fb4edd70c9014edeaa4fd42186", - "name" : "Digital Pack Quarterly", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD59.95", "NZD70.5", "EUR44.95", "GBP35.95", "CAD65.85", "AUD64.5" ], - "pricing" : [ { - "currency" : "USD", - "price" : 59.950000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 70.500000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 44.950000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 35.950000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 65.850000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 64.500000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Quarter", - "billingPeriodAlignment" : "AlignToTermStart", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Digital Pack Global Tax", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1070", - "ProductType__c" : "Digital Pack", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Digital Pack", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Digital Pack", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a00d779932ef0177a65430d30ac1", - "status" : "Active", - "name" : "Digital Subscription Three Month Fixed - One Time Charge", - "description" : "", - "effectiveStartDate" : "2020-08-01", - "effectiveEndDate" : "2099-01-01", - "TermType__c" : null, - "FrontendId__c" : "Three Month", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A106", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a00f779933030177a65881490325", - "name" : "Digital Subscription Three Month Fixed - One Time Charge", - "type" : "OneTime", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD60", "NZD63", "EUR45", "GBP36", "CAD63", "AUD63" ], - "pricing" : [ { - "currency" : "USD", - "price" : 60.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 63.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 45.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 36.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 63.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 63.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "One_Time", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : null, - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : null, - "billingPeriodAlignment" : null, - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : null, - "taxable" : true, - "taxCode" : "Digital Pack Global Tax", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1070", - "ProductType__c" : "Digital Pack", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Digital Subscription Gift Rule", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Digital Pack", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Digital Pack", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a00d71c96bac0171df3a5622740f", - "status" : "Active", - "name" : "Corporate Digital Subscription", - "description" : "", - "effectiveStartDate" : "2020-01-01", - "effectiveEndDate" : "2050-01-01", - "TermType__c" : "TERMED", - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A100", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a00871c96ba30171df3b481931a0", - "name" : "Corporate Digital Subscription", - "type" : "OneTime", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD0", "NZD0", "EUR0", "GBP0", "CAD0", "AUD0" ], - "pricing" : [ { - "currency" : "USD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "One_Time", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : null, - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : null, - "billingPeriodAlignment" : null, - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : null, - "taxable" : false, - "taxCode" : "", - "taxMode" : null, - "ProductCode__c" : "P1070", - "ProductType__c" : "Digital Pack", - "triggerEvent" : "ContractEffective", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize upon invoicing", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Digital Pack", - "deferredRevenueAccountingCodeType" : "SalesRevenue", - "recognizedRevenueAccountingCode" : "Digital Pack", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a00c77992ba70177a6596f710265", - "status" : "Active", - "name" : "Digital Subscription One Year Fixed - One Time Charge", - "description" : "", - "effectiveStartDate" : "2020-08-01", - "effectiveEndDate" : "2099-01-01", - "TermType__c" : null, - "FrontendId__c" : "One Year", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A108", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a011779932fd0177a670f43102aa", - "name" : "Digital Subscription One Year Fixed - One Time Charge", - "type" : "OneTime", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD165", "NZD175", "EUR125", "GBP99", "CAD175", "AUD175" ], - "pricing" : [ { - "currency" : "USD", - "price" : 165.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 175.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 125.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 99.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 175.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 175.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "One_Time", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : null, - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : null, - "billingPeriodAlignment" : null, - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : null, - "taxable" : true, - "taxCode" : "Digital Pack Global Tax", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1070", - "ProductType__c" : "Digital Pack", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Digital Subscription Gift Rule", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Digital Pack", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Digital Pack", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a00773adc09d0173b99e4ded7f45", - "status" : "Active", - "name" : "Digital Subscription One Year Fixed - Deprecated", - "description" : "", - "effectiveStartDate" : "2020-08-01", - "effectiveEndDate" : "2099-01-01", - "TermType__c" : null, - "FrontendId__c" : "One Year", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A104", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a00d73add0220173b9a387c62aec", - "name" : "Digital Subscription One Year Fixed", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD165", "NZD175", "EUR125", "GBP99", "CAD175", "AUD175" ], - "pricing" : [ { - "currency" : "USD", - "price" : 165.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 175.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 125.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 99.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 175.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 175.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Annual", - "billingPeriodAlignment" : "AlignToTermStart", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Digital Pack Global Tax", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1070", - "ProductType__c" : "Digital Pack", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Digital Subscription Gift Rule", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Digital Pack", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Digital Pack", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - } ], - "productFeatures" : [ ] - }, { - "id" : "2c92a00870ec598001710740c3d92eab", - "sku" : "ABC-00000031", - "name" : "Newspaper Digital Voucher", - "description" : "Newspaper Digital Voucher", - "category" : null, - "effectiveStartDate" : "2007-01-01", - "effectiveEndDate" : "2099-07-12", - "productNumber" : null, - "allowFeatureChanges" : false, - "ProductEnabled__c" : "True", - "Entitlements__c" : null, - "AcquisitionProfile__c" : "Paid", - "ProductType__c" : "Newspaper - Digital Voucher", - "ProductLevel__c" : null, - "Tier__c" : null, - "productRatePlans" : [ { - "id" : "2c92a00870ec598001710740d3d03035", - "status" : "Active", - "name" : "Everyday+", - "description" : "Guardian and Observer papers, plus The Guardian Daily and premium access to the Guardian Live app.", - "effectiveStartDate" : "2007-01-01", - "effectiveEndDate" : "2099-07-12", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : "34", - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A109", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a00870ec598001710740d4143037", - "name" : "Digipack", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP2" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 2.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "EVERYDAY+ Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1299", - "ProductType__c" : "Digital Pack", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740d4b8304f", - "name" : "Saturday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP10.95" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 10.950000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "EVERYDAY+ Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1222", - "ProductType__c" : "Print Saturday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher SAT", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher SAT", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740d54f3069", - "name" : "Tuesday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP7.82" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 7.820000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "EVERYDAY+ Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1212", - "ProductType__c" : "Print Tuesday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher M-F", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher M-F", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740d5fd3073", - "name" : "Monday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP7.82" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 7.820000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "EVERYDAY+ Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1212", - "ProductType__c" : "Print Monday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher M-F", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher M-F", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740d691307c", - "name" : "Thursday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP7.82" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 7.820000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "EVERYDAY+ Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1212", - "ProductType__c" : "Print Thursday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher M-F", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher M-F", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740d7493084", - "name" : "Wednesday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP7.82" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 7.820000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "EVERYDAY+ Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1212", - "ProductType__c" : "Print Wednesday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher M-F", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher M-F", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740d7e2308d", - "name" : "Sunday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP10.94" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 10.940000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "EVERYDAY+ Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1232", - "ProductType__c" : "Print Sunday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher SUN", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher SUN", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740d8873096", - "name" : "Friday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP7.82" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 7.820000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "EVERYDAY+ Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1212", - "ProductType__c" : "Print Friday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher M-F", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher M-F", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a00870ec598001710740ca532f69", - "status" : "Active", - "name" : "Sixday", - "description" : "Guardian papers", - "effectiveStartDate" : "2007-01-01", - "effectiveEndDate" : "2099-07-12", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : "30", - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A115", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a00870ec598001710740cc9b2f88", - "name" : "Thursday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP8.44" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 8.440000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Newspaper Digital Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1212", - "ProductType__c" : "Print Thursday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher M-F", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher M-F", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740cd012f90", - "name" : "Wednesday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP8.44" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 8.440000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Newspaper Digital Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1212", - "ProductType__c" : "Print Wednesday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher M-F", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher M-F", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740cd6e2fa2", - "name" : "Saturday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP11.79" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 11.790000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Newspaper Digital Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1222", - "ProductType__c" : "Print Saturday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher SAT", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher SAT", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740cb4e2f6b", - "name" : "Friday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP8.44" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 8.440000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Newspaper Digital Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1212", - "ProductType__c" : "Print Friday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher M-F", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher M-F", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740cbb32f77", - "name" : "Monday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP8.44" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 8.440000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Newspaper Digital Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1212", - "ProductType__c" : "Print Monday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher M-F", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher M-F", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740cc2c2f80", - "name" : "Tuesday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP8.44" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 8.440000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Newspaper Digital Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1212", - "ProductType__c" : "Print Tuesday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher M-F", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher M-F", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a00870ec598001710740c78d2f13", - "status" : "Active", - "name" : "Everyday", - "description" : "Guardian and Observer papers", - "effectiveStartDate" : "2007-01-01", - "effectiveEndDate" : "2099-07-12", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : "34", - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A114", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a00870ec598001710740c8c42f40", - "name" : "Thursday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP7.82" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 7.820000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Newspaper Digital Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1212", - "ProductType__c" : "Print Thursday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher M-F", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher M-F", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740c91d2f4d", - "name" : "Friday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP7.82" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 7.820000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Newspaper Digital Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1212", - "ProductType__c" : "Print Friday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher M-F", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher M-F", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740c7b82f1c", - "name" : "Monday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP7.82" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 7.820000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Newspaper Digital Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1212", - "ProductType__c" : "Print Monday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher M-F", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher M-F", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740c80f2f26", - "name" : "Tuesday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP7.82" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 7.820000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Newspaper Digital Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1212", - "ProductType__c" : "Print Tuesday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher M-F", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher M-F", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740c8652f37", - "name" : "Saturday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP10.95" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 10.950000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Newspaper Digital Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1222", - "ProductType__c" : "Print Saturday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher SAT", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher SAT", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740c9802f59", - "name" : "Wednesday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP7.82" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 7.820000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Newspaper Digital Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1212", - "ProductType__c" : "Print Wednesday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher M-F", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher M-F", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740c9d72f61", - "name" : "Sunday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP10.94" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 10.940000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Newspaper Digital Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1232", - "ProductType__c" : "Print Sunday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher SUN", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher SUN", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a00870ec598001710740d24b3022", - "status" : "Active", - "name" : "Weekend", - "description" : "Saturday Guardian and Observer papers", - "effectiveStartDate" : "2007-01-01", - "effectiveEndDate" : "2099-07-12", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : "24", - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A119", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a00870ec598001710740d28e3024", - "name" : "Saturday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP12.5" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 12.500000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Newspaper Digital Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1222", - "ProductType__c" : "Print Saturday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher SAT", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher SAT", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740d325302c", - "name" : "Sunday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP12.49" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 12.490000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Newspaper Digital Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1232", - "ProductType__c" : "Print Sunday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher SUN", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher SUN", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a00870ec598001710740c4582ead", - "status" : "Active", - "name" : "Sixday+", - "description" : "Guardian papers, plus The Guardian Daily and premium access to the Guardian Live app.", - "effectiveStartDate" : "2007-01-01", - "effectiveEndDate" : "2099-07-12", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : "31", - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A110", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a00870ec598001710740c48e2eaf", - "name" : "Thursday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP8.44" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 8.440000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "SIXDAY+ Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1212", - "ProductType__c" : "Print Thursday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher M-F", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher M-F", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740c4dc2eb7", - "name" : "Wednesday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP8.44" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 8.440000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "SIXDAY+ Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1212", - "ProductType__c" : "Print Wednesday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher M-F", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher M-F", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740c5192ebf", - "name" : "Friday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP8.44" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 8.440000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "SIXDAY+ Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1212", - "ProductType__c" : "Print Friday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher M-F", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher M-F", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740c55a2ec7", - "name" : "Saturday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP11.79" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 11.790000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "SIXDAY+ Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1222", - "ProductType__c" : "Print Saturday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher SAT", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher SAT", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740c5962ecf", - "name" : "Monday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP8.44" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 8.440000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "SIXDAY+ Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1212", - "ProductType__c" : "Print Monday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher M-F", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher M-F", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740c5cf2ed7", - "name" : "Digipack", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP2" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 2.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "SIXDAY+ Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1299", - "ProductType__c" : "Digital Pack", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740c60f2edf", - "name" : "Tuesday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP8.44" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 8.440000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "SIXDAY+ Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1212", - "ProductType__c" : "Print Tuesday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher M-F", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher M-F", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a00870ec598001710740d0d83017", - "status" : "Active", - "name" : "Sunday", - "description" : "Observer paper", - "effectiveStartDate" : "2017-03-27", - "effectiveEndDate" : "2099-07-12", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : "15", - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A118", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a00870ec598001710740d1103019", - "name" : "Sunday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP13.99" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 13.990000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Newspaper Digital Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1232", - "ProductType__c" : "Print Sunday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher SUN", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher SUN", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a00870ec598001710740cf9e3004", - "status" : "Active", - "name" : "Sunday+", - "description" : "Observer paper, plus The Guardian Daily and premium access to the Guardian Live app.", - "effectiveStartDate" : "2007-01-01", - "effectiveEndDate" : "2099-07-12", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : "11", - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A112", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a00870ec598001710740cfda3006", - "name" : "Digipack", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP10" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 10.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "SUNDAY+ Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1299", - "ProductType__c" : "Digital Pack", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740d053300f", - "name" : "Sunday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP13.99" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 13.990000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "SUNDAY+ Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1232", - "ProductType__c" : "Print Sunday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher SUN", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher SUN", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a00870ec598001710740c6672ee7", - "status" : "Active", - "name" : "Weekend+", - "description" : "Saturday Guardian and Observer papers, plus The Guardian Daily and premium access to the Guardian Live app.", - "effectiveStartDate" : "2007-01-01", - "effectiveEndDate" : "2099-07-12", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : "19", - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A113", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a00870ec598001710740c6872ee9", - "name" : "Saturday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP12.5" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 12.500000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "WEEKEND+ Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1222", - "ProductType__c" : "Print Saturday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher SAT", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher SAT", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740c6ce2ef1", - "name" : "Digipack", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP9" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 9.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "WEEKEND+ Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1299", - "ProductType__c" : "Digital Pack", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740c7132efe", - "name" : "Sunday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP12.49" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 12.490000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "WEEKEND+ Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1232", - "ProductType__c" : "Print Sunday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher SUN", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher SUN", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a00870ec598001710740cdd02fbd", - "status" : "Active", - "name" : "Saturday", - "description" : "Saturday paper", - "effectiveStartDate" : "2018-03-14", - "effectiveEndDate" : "2099-07-12", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : "15", - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A117", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a00870ec598001710740ce042fcb", - "name" : "Saturday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP13.99" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 13.990000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Newspaper Digital Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1222", - "ProductType__c" : "Print Saturday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher SAT", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher SAT", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a00870ec598001710740ce702ff0", - "status" : "Active", - "name" : "Saturday+", - "description" : "Saturday paper, plus The Guardian Daily and premium access to the Guardian Live app.", - "effectiveStartDate" : "2018-03-14", - "effectiveEndDate" : "2099-07-12", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : "11", - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A111", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a00870ec598001710740cf1e2ffc", - "name" : "Saturday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP13.99" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 13.990000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "SATURDAY+ Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1222", - "ProductType__c" : "Print Saturday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher SAT", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher SAT", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740cea02ff4", - "name" : "Digipack", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP10" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 10.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "SATURDAY+ Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1299", - "ProductType__c" : "Digital Pack", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - } ], - "productFeatures" : [ ] - }, { - "id" : "2c92a0fe5aacfabe015ad24bf6e15ff6", - "sku" : "ABC-00000028", - "name" : "Contributor", - "description" : "", - "category" : null, - "effectiveStartDate" : "2017-03-15", - "effectiveEndDate" : "2099-03-15", - "productNumber" : null, - "allowFeatureChanges" : false, - "ProductEnabled__c" : "True", - "Entitlements__c" : null, - "AcquisitionProfile__c" : "Paid", - "ProductType__c" : "Contribution", - "ProductLevel__c" : null, - "Tier__c" : null, - "productRatePlans" : [ { - "id" : "2c92a0fc5e1dc084015e37f58c200eea", - "status" : "Active", - "name" : "Annual Contribution", - "description" : "", - "effectiveStartDate" : "2017-03-15", - "effectiveEndDate" : "2099-03-15", - "TermType__c" : "TERMED", - "FrontendId__c" : "Annual", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A104", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fc5e1dc084015e37f58c7b0f34", - "name" : "Annual Contribution", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD60", "NZD60", "EUR60", "GBP60", "CAD5", "AUD100" ], - "pricing" : [ { - "currency" : "USD", - "price" : 60.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 60.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 60.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 60.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 5.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 100.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Annual", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : true, - "taxCode" : "Contribution", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1010", - "ProductType__c" : "Contributor", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize upon invoicing", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Contribution", - "deferredRevenueAccountingCodeType" : "SalesRevenue", - "recognizedRevenueAccountingCode" : "Contribution", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fc5aacfadd015ad24db4ff5e97", - "status" : "Active", - "name" : "Monthly Contribution", - "description" : "", - "effectiveStartDate" : "2017-03-15", - "effectiveEndDate" : "2099-03-15", - "TermType__c" : "TERMED", - "FrontendId__c" : "Monthly", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A101", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fc5aacfadd015ad250bf2c6d38", - "name" : "Monthly Contribution", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD5", "NZD5", "EUR5", "GBP5", "CAD5", "AUD10" ], - "pricing" : [ { - "currency" : "USD", - "price" : 5.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 5.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 5.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 5.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 5.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 10.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : true, - "taxCode" : "Contribution", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1010", - "ProductType__c" : "Contributor", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize upon invoicing", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Contribution", - "deferredRevenueAccountingCodeType" : "SalesRevenue", - "recognizedRevenueAccountingCode" : "Contribution", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - } ], - "productFeatures" : [ ] - }, { - "id" : "2c92a0fd57d0a9870157d73fa27c3de1", - "sku" : "ABC-00000017", - "name" : "Guardian Weekly Zone A", - "description" : "", - "category" : null, - "effectiveStartDate" : "1990-10-18", - "effectiveEndDate" : "2099-10-18", - "productNumber" : null, - "allowFeatureChanges" : false, - "ProductEnabled__c" : "True", - "Entitlements__c" : null, - "AcquisitionProfile__c" : "Paid", - "ProductType__c" : "Guardian Weekly", - "ProductLevel__c" : null, - "Tier__c" : null, - "productRatePlans" : [ { - "id" : "2c92a0ff5a6b5d77015a7fb38d201688", - "status" : "Active", - "name" : "Guardian Weekly 10% Discount", - "description" : "", - "effectiveStartDate" : "1991-01-01", - "effectiveEndDate" : "2099-01-01", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : null, - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A104", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0ff5a6b5d77015a7fb548381f4e", - "name" : "10% Discount", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "10% discount" ], - "pricing" : [ { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 10.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Annual", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : null, - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0ff5a5adca7015a5c51a69c7f2e", - "status" : "Active", - "name" : "Guardian Weekly 3 Years", - "description" : "", - "effectiveStartDate" : "1995-12-12", - "effectiveEndDate" : "2099-10-18", - "TermType__c" : "ONETERM", - "FrontendId__c" : "ThreeYears", - "Saving__c" : null, - "DefaultTerm__c" : "36", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A104", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0ff5a5adca7015a5c51a6ad7f30", - "name" : "Zone A 3 Years", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD720", "GBP360" ], - "pricing" : [ { - "currency" : "USD", - "price" : 720.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 360.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 1, - "upToPeriodsType" : "Billing_Periods", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Three_Years", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0ff5a5adca7015a5c4af5963efa", - "status" : "Active", - "name" : "Guardian Weekly 6 Months", - "description" : "", - "effectiveStartDate" : "1995-10-18", - "effectiveEndDate" : "2099-10-18", - "TermType__c" : null, - "FrontendId__c" : "SixMonths", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A103", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0ff5a5adca7015a5c4af5b63f01", - "name" : "Zone A 6 Months", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD120", "GBP60" ], - "pricing" : [ { - "currency" : "USD", - "price" : 120.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 60.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Semi_Annual", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0ff5a4b85e7015a4cf95d352a07", - "status" : "Active", - "name" : "Guardian Weekly 12 Issues", - "description" : "12 issues", - "effectiveStartDate" : "1995-11-13", - "effectiveEndDate" : "2099-02-14", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A102", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0ff5a4b85e7015a4cf95d472a09", - "name" : "Zone A 12 Issues", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD12", "GBP12" ], - "pricing" : [ { - "currency" : "USD", - "price" : 12.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 12.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 1, - "upToPeriodsType" : "Billing_Periods", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Specific_Weeks", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : 12, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "ContractEffective", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0ff59d9d540015a41a40b3e07d3", - "status" : "Active", - "name" : "Guardian Weekly 6 Issues", - "description" : "", - "effectiveStartDate" : "1995-02-13", - "effectiveEndDate" : "2099-02-14", - "TermType__c" : null, - "FrontendId__c" : "SixWeeks", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A101", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fe5a241e5a015a41f1c4b102c3", - "name" : "Zone A 6 Issues", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD6", "GBP6" ], - "pricing" : [ { - "currency" : "USD", - "price" : 6.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 6.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 1, - "upToPeriodsType" : "Billing_Periods", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Specific_Weeks", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : 6, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "ContractEffective", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0ff58bdf4eb0158f2ecc89c1034", - "status" : "Active", - "name" : "Guardian Weekly 1 Year", - "description" : "", - "effectiveStartDate" : "1995-12-12", - "effectiveEndDate" : "2099-10-18", - "TermType__c" : "ONETERM", - "FrontendId__c" : "OneYear", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A104", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0ff58bdf4eb0158f2ecc8ae1036", - "name" : "Zone A 1 Year", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD240", "GBP120" ], - "pricing" : [ { - "currency" : "USD", - "price" : 240.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 120.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 1, - "upToPeriodsType" : "Billing_Periods", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Annual", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0ff57d0a0b60157d741e722439a", - "status" : "Active", - "name" : "Guardian Weekly Annual", - "description" : "", - "effectiveStartDate" : "1995-10-18", - "effectiveEndDate" : "2099-10-18", - "TermType__c" : null, - "FrontendId__c" : "Yearly", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A104", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fd57d0a9870157d7510cfd66f0", - "name" : "Zone A Annual", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD240", "GBP120" ], - "pricing" : [ { - "currency" : "USD", - "price" : 240.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 120.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Annual", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fe5a6b4e98015a7fb648541d78", - "status" : "Active", - "name" : "Guardian Weekly 30% Discount", - "description" : "", - "effectiveStartDate" : "1991-01-01", - "effectiveEndDate" : "2099-01-01", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : null, - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A104", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fe5a6b4e98015a7fb648631d7a", - "name" : "30% Discount", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "30% discount" ], - "pricing" : [ { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 30.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Annual", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : null, - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fe5a6b4e98015a7fb59d9407a6", - "status" : "Active", - "name" : "Guardian Weekly 25% Discount", - "description" : "", - "effectiveStartDate" : "1991-01-01", - "effectiveEndDate" : "2099-01-01", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : null, - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A104", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fe5a6b4e98015a7fb59db107a8", - "name" : "25% Discount", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "25% discount" ], - "pricing" : [ { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 25.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Annual", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : null, - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fe5a5ad349015a5c4e3f87184c", - "status" : "Active", - "name" : "Guardian Weekly 6 Months Only", - "description" : "", - "effectiveStartDate" : "1995-12-12", - "effectiveEndDate" : "2099-10-18", - "TermType__c" : "ONETERM", - "FrontendId__c" : "SixMonthsOnly", - "Saving__c" : null, - "DefaultTerm__c" : "6", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A103", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fe5a5ad349015a5c4e3f99184f", - "name" : "Zone A 6 Months", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD120", "GBP60" ], - "pricing" : [ { - "currency" : "USD", - "price" : 120.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 60.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 6, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Semi_Annual", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fe5a5ad343015a5c50b4eb2d72", - "status" : "Active", - "name" : "Guardian Weekly 2 Years", - "description" : "", - "effectiveStartDate" : "1995-12-12", - "effectiveEndDate" : "2099-10-18", - "TermType__c" : "ONETERM", - "FrontendId__c" : "TwoYears", - "Saving__c" : null, - "DefaultTerm__c" : "24", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A104", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fe5a5ad343015a5c50b4fc2d74", - "name" : "Zone A 2 Years", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD480", "GBP240" ], - "pricing" : [ { - "currency" : "USD", - "price" : 480.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 240.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 1, - "upToPeriodsType" : "Billing_Periods", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Two_Years", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fd57d0a9870157d7412f19424f", - "status" : "Active", - "name" : "Guardian Weekly Quarterly", - "description" : "", - "effectiveStartDate" : "1995-10-18", - "effectiveEndDate" : "2099-10-18", - "TermType__c" : null, - "FrontendId__c" : "Quarterly", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A102", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0ff57d0a0b50157d752a0077624", - "name" : "Zone A Quarterly", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD60", "GBP30" ], - "pricing" : [ { - "currency" : "USD", - "price" : 60.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 30.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Quarter", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - } ], - "productFeatures" : [ ] - }, { - "id" : "2c92a0fe57d0a0c40157d74240d35541", - "sku" : "ABC-00000019", - "name" : "Guardian Weekly Zone B", - "description" : "", - "category" : null, - "effectiveStartDate" : "1996-01-01", - "effectiveEndDate" : "2099-10-18", - "productNumber" : null, - "allowFeatureChanges" : false, - "ProductEnabled__c" : "True", - "Entitlements__c" : null, - "AcquisitionProfile__c" : "Paid", - "ProductType__c" : "Guardian Weekly", - "ProductLevel__c" : null, - "Tier__c" : null, - "productRatePlans" : [ { - "id" : "2c92a0fe5a6b4e98015a8026d9d30b32", - "status" : "Active", - "name" : "Guardian Weekly 10% Discount", - "description" : "", - "effectiveStartDate" : "1996-10-18", - "effectiveEndDate" : "2099-10-18", - "TermType__c" : "TERMED", - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A104", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fe5a6b4e98015a8026d9e70b34", - "name" : "10% Discount", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "0% discount", "0% discount", "0% discount", "10% discount", "0% discount", "0% discount" ], - "pricing" : [ { - "currency" : "USD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 10.000000000, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Annual", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : null, - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0ff5a6b5d77015a80298bfa6e7c", - "status" : "Active", - "name" : "Guardian Weekly 30% Discount", - "description" : "", - "effectiveStartDate" : "1996-10-18", - "effectiveEndDate" : "2099-10-18", - "TermType__c" : "TERMED", - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A104", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0ff5a6b5d77015a80298c0d6e7f", - "name" : "30% Discount", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "0% discount", "0% discount", "0% discount", "30% discount", "0% discount", "0% discount" ], - "pricing" : [ { - "currency" : "USD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 30.000000000, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Annual", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : null, - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0ff5a6b5d74015a8028b15f4db4", - "status" : "Active", - "name" : "Guardian Weekly 25% Discount", - "description" : "", - "effectiveStartDate" : "1996-10-18", - "effectiveEndDate" : "2099-10-18", - "TermType__c" : "TERMED", - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A104", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0ff5a6b5d74015a8028b16f4db6", - "name" : "25% Discount", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "0% discount", "0% discount", "0% discount", "25% discount", "0% discount", "0% discount" ], - "pricing" : [ { - "currency" : "USD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 25.000000000, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Annual", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : null, - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0ff5a5adca9015a611f77db4431", - "status" : "Active", - "name" : "Guardian Weekly 3 Years", - "description" : "", - "effectiveStartDate" : "1996-10-18", - "effectiveEndDate" : "2099-10-18", - "TermType__c" : "ONETERM", - "FrontendId__c" : "ThreeYears", - "Saving__c" : null, - "DefaultTerm__c" : "36", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A104", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0ff5a5adca9015a611f77eb4436", - "name" : "Zone B 3 Years", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD720", "NZD1176", "EUR588", "GBP456", "CAD720", "AUD936" ], - "pricing" : [ { - "currency" : "USD", - "price" : 720.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 1176.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 588.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 456.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 720.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 936.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 1, - "upToPeriodsType" : "Billing_Periods", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Three_Years", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0ff5a5adca7015a611d44e01395", - "status" : "Active", - "name" : "Guardian Weekly 2 Years", - "description" : "", - "effectiveStartDate" : "1996-10-18", - "effectiveEndDate" : "2099-10-18", - "TermType__c" : "ONETERM", - "FrontendId__c" : "TwoYears", - "Saving__c" : null, - "DefaultTerm__c" : "24", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A104", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0ff5a5adca7015a611d44f21397", - "name" : "Zone B 2 Years", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD480", "NZD784", "EUR392", "GBP304", "CAD480", "AUD624" ], - "pricing" : [ { - "currency" : "USD", - "price" : 480.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 784.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 392.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 304.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 480.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 624.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 1, - "upToPeriodsType" : "Billing_Periods", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Two_Years", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fe5a5ad349015a5c61d6e05d8d", - "status" : "Active", - "name" : "Guardian Weekly 6 Months Only", - "description" : "", - "effectiveStartDate" : "1996-10-18", - "effectiveEndDate" : "2099-10-18", - "TermType__c" : "ONETERM", - "FrontendId__c" : "SixMonthsOnly", - "Saving__c" : null, - "DefaultTerm__c" : "6", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A103", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fe5a5ad349015a5c61d6f05d94", - "name" : "Zone B 6 Months", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD120", "NZD196", "EUR98", "GBP76", "CAD120", "AUD156" ], - "pricing" : [ { - "currency" : "USD", - "price" : 120.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 196.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 98.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 76.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 120.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 156.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 6, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Semi_Annual", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fe5a5ad344015a5c67b1144250", - "status" : "Active", - "name" : "Guardian Weekly 6 Issues", - "description" : "", - "effectiveStartDate" : "1996-10-18", - "effectiveEndDate" : "2099-10-18", - "TermType__c" : "ONETERM", - "FrontendId__c" : "SixWeeks", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A101", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fe5a5ad344015a5c67b1234254", - "name" : "Zone B 6 Issues", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD6", "NZD6", "EUR6", "GBP6", "CAD6", "AUD6" ], - "pricing" : [ { - "currency" : "USD", - "price" : 6.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 6.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 6.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 6.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 6.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 6.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 1, - "upToPeriodsType" : "Billing_Periods", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Specific_Weeks", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : 6, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "ContractEffective", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fe57d0a0c40157d74241005544", - "status" : "Active", - "name" : "Guardian Weekly Quarterly", - "description" : "", - "effectiveStartDate" : "1996-01-01", - "effectiveEndDate" : "2099-10-18", - "TermType__c" : "TERMED", - "FrontendId__c" : "Quarterly", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A102", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fd57d0a9230157d75a5e377221", - "name" : "Zone B Quarterly", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD60", "NZD98", "EUR49", "GBP38", "CAD60", "AUD78" ], - "pricing" : [ { - "currency" : "USD", - "price" : 60.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 98.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 49.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 38.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 60.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 78.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Quarter", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fe57d0a0c40157d74240de5543", - "status" : "Active", - "name" : "Guardian Weekly Annual", - "description" : "", - "effectiveStartDate" : "1996-10-18", - "effectiveEndDate" : "2099-10-18", - "TermType__c" : "TERMED", - "FrontendId__c" : "Yearly", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A104", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0ff57d0a0b50157d759315607c5", - "name" : "Zone B Annual", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD240", "NZD392", "EUR196", "GBP152", "CAD240", "AUD312" ], - "pricing" : [ { - "currency" : "USD", - "price" : 240.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 392.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 196.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 152.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 240.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 312.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Annual", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fd5a5adc8b015a5c690d0d1ec6", - "status" : "Active", - "name" : "Guardian Weekly 12 Issues", - "description" : "", - "effectiveStartDate" : "1996-10-18", - "effectiveEndDate" : "2099-10-18", - "TermType__c" : "ONETERM", - "FrontendId__c" : "TwelveWeeks", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A102", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fd5a5adc8b015a5c690d261ec8", - "name" : "Zone B 12 Issues", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD12", "NZD12", "EUR12", "GBP12", "CAD12", "AUD12" ], - "pricing" : [ { - "currency" : "USD", - "price" : 12.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 12.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 12.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 12.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 12.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 12.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 1, - "upToPeriodsType" : "Billing_Periods", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Specific_Weeks", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : 12, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "ContractEffective", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fd5a5adc8b015a5c65074b7c41", - "status" : "Active", - "name" : "Guardian Weekly 6 Months", - "description" : "", - "effectiveStartDate" : "1996-10-18", - "effectiveEndDate" : "2099-10-18", - "TermType__c" : "TERMED", - "FrontendId__c" : "SixMonths", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A103", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fd5a5adc8b015a5c65075e7c43", - "name" : "Zone B 6 Months", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD120", "NZD196", "EUR98", "GBP76", "CAD120", "AUD156" ], - "pricing" : [ { - "currency" : "USD", - "price" : 120.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 196.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 98.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 76.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 120.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 156.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Semi_Annual", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fd58cf57000158f30ae6d06f2a", - "status" : "Active", - "name" : "Guardian Weekly 1 Year", - "description" : "", - "effectiveStartDate" : "1996-01-01", - "effectiveEndDate" : "2099-10-18", - "TermType__c" : "ONETERM", - "FrontendId__c" : "OneYear", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A104", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fd58cf57000158f30ae6e26f2c", - "name" : "Zone B 1 Year", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD240", "NZD392", "EUR196", "GBP152", "CAD240", "AUD312" ], - "pricing" : [ { - "currency" : "USD", - "price" : 240.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 392.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 196.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 152.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 240.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 312.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 1, - "upToPeriodsType" : "Billing_Periods", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Annual", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - } ], - "productFeatures" : [ ] - } ], - "nextPage" : "/v1/catalog/products?page=2&pageSize=10", - "success" : true -} \ No newline at end of file diff --git a/lambda/src/test/resources/Migrations/SupporterPlus2023V1V2/monthly-contribution/invoice-preview.json b/lambda/src/test/resources/Migrations/SupporterPlus2023V1V2/monthly-contribution/invoice-preview.json deleted file mode 100644 index 72075ec9..00000000 --- a/lambda/src/test/resources/Migrations/SupporterPlus2023V1V2/monthly-contribution/invoice-preview.json +++ /dev/null @@ -1,245 +0,0 @@ -{ - "accountId" : "ACCOUNT-ID", - "invoiceItems" : [ { - "id" : "f4b0c9a5f34c4826bafa9c3356c818d6", - "subscriptionName" : "SUBSCRIPTION-NUMBER", - "subscriptionId" : "SUBSCRIPTION-ID", - "subscriptionNumber" : "SUBSCRIPTION-NUMBER", - "serviceStartDate" : "2023-08-03", - "serviceEndDate" : "2023-09-02", - "chargeAmount" : 25.000000000, - "chargeDescription" : "", - "chargeName" : "Supporter Plus Monthly Charge", - "chargeNumber" : "C-04419773", - "chargeId" : "8a12921d89018aaa01891bef520e1b66", - "productName" : "Supporter Plus", - "quantity" : 1, - "taxAmount" : 0.000000000, - "unitOfMeasure" : "", - "chargeDate" : "2023-07-19 09:55:58", - "chargeType" : "Recurring", - "processingType" : "Charge", - "appliedToItemId" : null - }, { - "id" : "c1bdffafb948473c99e47c4a611e29dd", - "subscriptionName" : "SUBSCRIPTION-NUMBER", - "subscriptionId" : "SUBSCRIPTION-ID", - "subscriptionNumber" : "SUBSCRIPTION-NUMBER", - "serviceStartDate" : "2023-09-03", - "serviceEndDate" : "2023-10-02", - "chargeAmount" : 25.000000000, - "chargeDescription" : "", - "chargeName" : "Supporter Plus Monthly Charge", - "chargeNumber" : "C-04419773", - "chargeId" : "8a12921d89018aaa01891bef520e1b66", - "productName" : "Supporter Plus", - "quantity" : 1, - "taxAmount" : 0.000000000, - "unitOfMeasure" : "", - "chargeDate" : "2023-07-19 09:55:58", - "chargeType" : "Recurring", - "processingType" : "Charge", - "appliedToItemId" : null - }, { - "id" : "5d89818b6c7246d99d6361e27245ee91", - "subscriptionName" : "SUBSCRIPTION-NUMBER", - "subscriptionId" : "SUBSCRIPTION-ID", - "subscriptionNumber" : "SUBSCRIPTION-NUMBER", - "serviceStartDate" : "2023-10-03", - "serviceEndDate" : "2023-11-02", - "chargeAmount" : 25.000000000, - "chargeDescription" : "", - "chargeName" : "Supporter Plus Monthly Charge", - "chargeNumber" : "C-04419773", - "chargeId" : "8a12921d89018aaa01891bef520e1b66", - "productName" : "Supporter Plus", - "quantity" : 1, - "taxAmount" : 0.000000000, - "unitOfMeasure" : "", - "chargeDate" : "2023-07-19 09:55:58", - "chargeType" : "Recurring", - "processingType" : "Charge", - "appliedToItemId" : null - }, { - "id" : "0c5210b7b12142829b78cab5325cb1ba", - "subscriptionName" : "SUBSCRIPTION-NUMBER", - "subscriptionId" : "SUBSCRIPTION-ID", - "subscriptionNumber" : "SUBSCRIPTION-NUMBER", - "serviceStartDate" : "2023-11-03", - "serviceEndDate" : "2023-12-02", - "chargeAmount" : 25.000000000, - "chargeDescription" : "", - "chargeName" : "Supporter Plus Monthly Charge", - "chargeNumber" : "C-04419773", - "chargeId" : "8a12921d89018aaa01891bef520e1b66", - "productName" : "Supporter Plus", - "quantity" : 1, - "taxAmount" : 0.000000000, - "unitOfMeasure" : "", - "chargeDate" : "2023-07-19 09:55:58", - "chargeType" : "Recurring", - "processingType" : "Charge", - "appliedToItemId" : null - }, { - "id" : "7af23635f15d4c419885acb065ce8c2c", - "subscriptionName" : "SUBSCRIPTION-NUMBER", - "subscriptionId" : "SUBSCRIPTION-ID", - "subscriptionNumber" : "SUBSCRIPTION-NUMBER", - "serviceStartDate" : "2023-12-03", - "serviceEndDate" : "2024-01-02", - "chargeAmount" : 25.000000000, - "chargeDescription" : "", - "chargeName" : "Supporter Plus Monthly Charge", - "chargeNumber" : "C-04419773", - "chargeId" : "8a12921d89018aaa01891bef520e1b66", - "productName" : "Supporter Plus", - "quantity" : 1, - "taxAmount" : 0.000000000, - "unitOfMeasure" : "", - "chargeDate" : "2023-07-19 09:55:58", - "chargeType" : "Recurring", - "processingType" : "Charge", - "appliedToItemId" : null - }, { - "id" : "fcdb6d727bc14540b526022ffbeae09c", - "subscriptionName" : "SUBSCRIPTION-NUMBER", - "subscriptionId" : "SUBSCRIPTION-ID", - "subscriptionNumber" : "SUBSCRIPTION-NUMBER", - "serviceStartDate" : "2024-01-03", - "serviceEndDate" : "2024-02-02", - "chargeAmount" : 25.000000000, - "chargeDescription" : "", - "chargeName" : "Supporter Plus Monthly Charge", - "chargeNumber" : "C-04419773", - "chargeId" : "8a12921d89018aaa01891bef520e1b66", - "productName" : "Supporter Plus", - "quantity" : 1, - "taxAmount" : 0.000000000, - "unitOfMeasure" : "", - "chargeDate" : "2023-07-19 09:55:58", - "chargeType" : "Recurring", - "processingType" : "Charge", - "appliedToItemId" : null - }, { - "id" : "393598d13b1a4903998cfbc663e2beb5", - "subscriptionName" : "SUBSCRIPTION-NUMBER", - "subscriptionId" : "SUBSCRIPTION-ID", - "subscriptionNumber" : "SUBSCRIPTION-NUMBER", - "serviceStartDate" : "2024-02-03", - "serviceEndDate" : "2024-03-02", - "chargeAmount" : 25.000000000, - "chargeDescription" : "", - "chargeName" : "Supporter Plus Monthly Charge", - "chargeNumber" : "C-04419773", - "chargeId" : "8a12921d89018aaa01891bef520e1b66", - "productName" : "Supporter Plus", - "quantity" : 1, - "taxAmount" : 0.000000000, - "unitOfMeasure" : "", - "chargeDate" : "2023-07-19 09:55:58", - "chargeType" : "Recurring", - "processingType" : "Charge", - "appliedToItemId" : null - }, { - "id" : "679bf3035ac14283805d6c16d46568ba", - "subscriptionName" : "SUBSCRIPTION-NUMBER", - "subscriptionId" : "SUBSCRIPTION-ID", - "subscriptionNumber" : "SUBSCRIPTION-NUMBER", - "serviceStartDate" : "2024-03-03", - "serviceEndDate" : "2024-04-02", - "chargeAmount" : 25.000000000, - "chargeDescription" : "", - "chargeName" : "Supporter Plus Monthly Charge", - "chargeNumber" : "C-04419773", - "chargeId" : "8a12921d89018aaa01891bef520e1b66", - "productName" : "Supporter Plus", - "quantity" : 1, - "taxAmount" : 0.000000000, - "unitOfMeasure" : "", - "chargeDate" : "2023-07-19 09:55:58", - "chargeType" : "Recurring", - "processingType" : "Charge", - "appliedToItemId" : null - }, { - "id" : "0aa04046f9534df1952e4af24852cb2d", - "subscriptionName" : "SUBSCRIPTION-NUMBER", - "subscriptionId" : "SUBSCRIPTION-ID", - "subscriptionNumber" : "SUBSCRIPTION-NUMBER", - "serviceStartDate" : "2024-04-03", - "serviceEndDate" : "2024-05-02", - "chargeAmount" : 25.000000000, - "chargeDescription" : "", - "chargeName" : "Supporter Plus Monthly Charge", - "chargeNumber" : "C-04419773", - "chargeId" : "8a12921d89018aaa01891bef520e1b66", - "productName" : "Supporter Plus", - "quantity" : 1, - "taxAmount" : 0.000000000, - "unitOfMeasure" : "", - "chargeDate" : "2023-07-19 09:55:58", - "chargeType" : "Recurring", - "processingType" : "Charge", - "appliedToItemId" : null - }, { - "id" : "eecaa259aaeb4050b5f6f9cabcdeeeb9", - "subscriptionName" : "SUBSCRIPTION-NUMBER", - "subscriptionId" : "SUBSCRIPTION-ID", - "subscriptionNumber" : "SUBSCRIPTION-NUMBER", - "serviceStartDate" : "2024-05-03", - "serviceEndDate" : "2024-06-02", - "chargeAmount" : 25.000000000, - "chargeDescription" : "", - "chargeName" : "Supporter Plus Monthly Charge", - "chargeNumber" : "C-04419773", - "chargeId" : "8a12921d89018aaa01891bef520e1b66", - "productName" : "Supporter Plus", - "quantity" : 1, - "taxAmount" : 0.000000000, - "unitOfMeasure" : "", - "chargeDate" : "2023-07-19 09:55:58", - "chargeType" : "Recurring", - "processingType" : "Charge", - "appliedToItemId" : null - }, { - "id" : "9d2961bc9c1749109f737f77b485d716", - "subscriptionName" : "SUBSCRIPTION-NUMBER", - "subscriptionId" : "SUBSCRIPTION-ID", - "subscriptionNumber" : "SUBSCRIPTION-NUMBER", - "serviceStartDate" : "2024-06-03", - "serviceEndDate" : "2024-07-02", - "chargeAmount" : 25.000000000, - "chargeDescription" : "", - "chargeName" : "Supporter Plus Monthly Charge", - "chargeNumber" : "C-04419773", - "chargeId" : "8a12921d89018aaa01891bef520e1b66", - "productName" : "Supporter Plus", - "quantity" : 1, - "taxAmount" : 0.000000000, - "unitOfMeasure" : "", - "chargeDate" : "2023-07-19 09:55:58", - "chargeType" : "Recurring", - "processingType" : "Charge", - "appliedToItemId" : null - }, { - "id" : "5b41bab9e2a346c2bbf9428245a10808", - "subscriptionName" : "SUBSCRIPTION-NUMBER", - "subscriptionId" : "SUBSCRIPTION-ID", - "subscriptionNumber" : "SUBSCRIPTION-NUMBER", - "serviceStartDate" : "2024-07-03", - "serviceEndDate" : "2024-08-02", - "chargeAmount" : 25.000000000, - "chargeDescription" : "", - "chargeName" : "Supporter Plus Monthly Charge", - "chargeNumber" : "C-04419773", - "chargeId" : "8a12921d89018aaa01891bef520e1b66", - "productName" : "Supporter Plus", - "quantity" : 1, - "taxAmount" : 0.000000000, - "unitOfMeasure" : "", - "chargeDate" : "2023-07-19 09:55:58", - "chargeType" : "Recurring", - "processingType" : "Charge", - "appliedToItemId" : null - } ], - "success" : true -} \ No newline at end of file diff --git a/lambda/src/test/resources/Migrations/SupporterPlus2023V1V2/monthly-contribution/subscription.json b/lambda/src/test/resources/Migrations/SupporterPlus2023V1V2/monthly-contribution/subscription.json deleted file mode 100644 index 15abbdc0..00000000 --- a/lambda/src/test/resources/Migrations/SupporterPlus2023V1V2/monthly-contribution/subscription.json +++ /dev/null @@ -1,162 +0,0 @@ -{ - "success" : true, - "id" : "SUBSCRIPTION-ID", - "accountId" : "ACCOUNT-ID", - "accountNumber" : "ACCOUNT-NUMBER", - "accountName" : "ACCOUNT-NAME", - "invoiceOwnerAccountId" : "ACCOUNT-ID", - "invoiceOwnerAccountNumber" : "ACCOUNT-NUMBER", - "invoiceOwnerAccountName" : "ACCOUNT-NAME", - "subscriptionNumber" : "SUBSCRIPTION-NUMBER", - "version" : 1, - "revision" : "1.0", - "termType" : "TERMED", - "invoiceSeparately" : false, - "contractEffectiveDate" : "2023-07-03", - "serviceActivationDate" : "2023-07-03", - "customerAcceptanceDate" : "2023-07-03", - "subscriptionStartDate" : "2023-07-03", - "subscriptionEndDate" : "2024-07-03", - "lastBookingDate" : "2023-07-03", - "termStartDate" : "2023-07-03", - "termEndDate" : "2024-07-03", - "initialTerm" : 12, - "initialTermPeriodType" : "Month", - "currentTerm" : 12, - "currentTermPeriodType" : "Month", - "autoRenew" : true, - "renewalSetting" : "RENEW_WITH_SPECIFIC_TERM", - "renewalTerm" : 12, - "renewalTermPeriodType" : "Month", - "contractedMrr" : 25.00, - "totalContractedValue" : 300.00, - "notes" : null, - "status" : "Active", - "TrialPeriodPrice__c" : null, - "CanadaHandDelivery__c" : null, - "QuoteNumber__QT" : null, - "GifteeIdentityId__c" : null, - "OpportunityName__QT" : null, - "GiftNotificationEmailDate__c" : null, - "Gift_Subscription__c" : "No", - "TrialPeriodDays__c" : null, - "CreatedRequestId__c" : "01f7af8b-c0c7-cb9d-0000-000000003323", - "AcquisitionSource__c" : null, - "CreatedByCSR__c" : null, - "CASSubscriberID__c" : null, - "LastPriceChangeDate__c" : null, - "InitialPromotionCode__c" : null, - "CpqBundleJsonId__QT" : null, - "RedemptionCode__c" : null, - "QuoteType__QT" : null, - "GiftRedemptionDate__c" : null, - "QuoteBusinessType__QT" : null, - "SupplierCode__c" : null, - "legacy_cat__c" : null, - "AcquisitionCase__c" : null, - "ReaderType__c" : "Direct", - "ActivationDate__c" : null, - "UserCancellationReason__c" : null, - "OpportunityCloseDate__QT" : null, - "IPaddress__c" : null, - "IPCountry__c" : null, - "PromotionCode__c" : null, - "OriginalSubscriptionStartDate__c" : null, - "LegacyContractStartDate__c" : null, - "CancellationReason__c" : null, - "billToContact" : null, - "paymentTerm" : null, - "invoiceTemplateId" : null, - "invoiceTemplateName" : null, - "sequenceSetId" : null, - "sequenceSetName" : null, - "soldToContact" : null, - "isLatestVersion" : true, - "cancelReason" : null, - "ratePlans" : [ { - "id" : "8a12921d89018aaa01891bef52021b65", - "productId" : "8a12865b8219d9b4018221061563643f", - "productName" : "Supporter Plus", - "productSku" : "ABC-00000032", - "productRatePlanId" : "8a12865b8219d9b401822106192b64dc", - "productRatePlanNumber" : null, - "ratePlanName" : "Supporter Plus Monthly", - "subscriptionProductFeatures" : [ ], - "externallyManagedPlanId" : null, - "subscriptionRatePlanNumber" : null, - "ratePlanCharges" : [ { - "id" : "8a12921d89018aaa01891bef520e1b66", - "originalChargeId" : "8a12921d89018aaa01891bef520e1b66", - "productRatePlanChargeId" : "8a12865b8219d9b401822106194e64e3", - "number" : "C-04419773", - "name" : "Supporter Plus Monthly Charge", - "productRatePlanChargeNumber" : null, - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "version" : 1, - "pricingSummary" : "GBP25", - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "currency" : "GBP", - "price" : 25.000000000, - "tiers" : null, - "chargeModelConfiguration" : null, - "inputArgumentId" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "discountApplyDetails" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "billingPeriod" : "Month", - "specificBillingPeriod" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriodAlignment" : "AlignToCharge", - "quantity" : 1.000000000, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedUnitsCreditRates" : null, - "usageRecordRatingOption" : null, - "segment" : 1, - "effectiveStartDate" : "2023-07-03", - "effectiveEndDate" : "2024-07-03", - "processedThroughDate" : "2023-07-03", - "chargedThroughDate" : "2023-08-03", - "done" : false, - "triggerDate" : null, - "triggerEvent" : "CustomerAcceptance", - "endDateCondition" : "Subscription_End", - "upToPeriodsType" : null, - "upToPeriods" : null, - "specificEndDate" : null, - "mrr" : 25.000000000, - "dmrc" : 25.000000000, - "tcv" : 300.000000000, - "dtcv" : 300.000000000, - "originalOrderDate" : "2023-07-03", - "amendedByOrderOn" : null, - "description" : "", - "HolidayStart__c" : null, - "HolidayEnd__c" : null, - "ForceSync__c" : null - } ] - } ], - "externallyManagedBy" : null, - "statusHistory" : [ { - "startDate" : "2023-07-03", - "endDate" : "2024-07-03", - "status" : "Active" - }, { - "startDate" : "2024-07-03", - "endDate" : null, - "status" : "OutOfTerm" - } ] -} \ No newline at end of file diff --git a/lambda/src/test/resources/Migrations/SupporterPlus2023V1V2/monthly-standard/account.json b/lambda/src/test/resources/Migrations/SupporterPlus2023V1V2/monthly-standard/account.json deleted file mode 100644 index c7011299..00000000 --- a/lambda/src/test/resources/Migrations/SupporterPlus2023V1V2/monthly-standard/account.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "basicInfo" : { - "id" : "ACCOUNT-ID", - "name" : "0010J00001w3XTWQA2", - "accountNumber" : "ACCOUNT-NUMBER", - "notes" : null, - "status" : "Active", - "crmId" : "0010J00001w3XTWQA2", - "batch" : "Batch1", - "invoiceTemplateId" : "2c92a0fb49377eae014951ca848e074b", - "communicationProfileId" : null, - "purchaseOrderNumber" : null, - "customerServiceRepName" : null, - "IdentityId__c" : "IDENTITY-ID-C", - "sfContactId__c" : "SF-CONTACT-ID-C", - "CCURN__c" : null, - "SpecialDeliveryInstructions__c" : null, - "NonStandardDataReason__c" : null, - "ProcessingAdvice__c" : "NoAdvice", - "CreatedRequestId__c" : null, - "RetryStatus__c" : null, - "salesRep" : null, - "sequenceSetId" : null - }, - "billingAndPayment" : { - "billCycleDay" : 18, - "currency" : "GBP", - "paymentTerm" : "Due Upon Receipt", - "paymentGateway" : "GoCardless", - "defaultPaymentMethodId" : "2c92a0ff64a5de7f0164acece15e1ed2", - "invoiceDeliveryPrefsPrint" : false, - "invoiceDeliveryPrefsEmail" : false, - "autoPay" : true, - "additionalEmailAddresses" : [ ] - }, - "metrics" : { - "balance" : 0.000000000, - "totalInvoiceBalance" : 0.000000000, - "creditBalance" : 0.000000000, - "contractedMrr" : 10.000000000 - }, - "billToContact" : null, - "soldToContact" : null, - "taxInfo" : null, - "success" : true -} \ No newline at end of file diff --git a/lambda/src/test/resources/Migrations/SupporterPlus2023V1V2/monthly-standard/catalogue.json b/lambda/src/test/resources/Migrations/SupporterPlus2023V1V2/monthly-standard/catalogue.json deleted file mode 100644 index f44dbf58..00000000 --- a/lambda/src/test/resources/Migrations/SupporterPlus2023V1V2/monthly-standard/catalogue.json +++ /dev/null @@ -1,14201 +0,0 @@ -{ - "products" : [ { - "id" : "2c92a0fb4bb97034014bbbc561fa4fed", - "sku" : "SKU-00000013", - "name" : "Supporter", - "description" : "This is the description of the supporter membership.", - "category" : null, - "effectiveStartDate" : "2014-01-01", - "effectiveEndDate" : "2099-01-01", - "productNumber" : null, - "allowFeatureChanges" : false, - "ProductEnabled__c" : "True", - "Entitlements__c" : "Events:SUPPORTER", - "AcquisitionProfile__c" : "Paid", - "ProductType__c" : "Membership", - "ProductLevel__c" : "400", - "Tier__c" : "Supporter", - "productRatePlans" : [ { - "id" : "8a129ce886834fa90186a20c3ee70b6a", - "status" : "Active", - "name" : "Supporter - annual (2023 Price)", - "description" : "", - "effectiveStartDate" : "2023-03-01", - "effectiveEndDate" : "2099-01-01", - "TermType__c" : "TERMED", - "FrontendId__c" : "Yearly", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A104", - "externalIdSourceSystem" : "", - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "8a129ce886834fa90186a20c3f4f0b6c", - "name" : "Supporter Membership - Annual", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD120", "EUR95", "GBP75", "CAD120", "AUD160" ], - "pricing" : [ { - "currency" : "USD", - "price" : 120.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 95.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 75.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 120.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 160.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Annual", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : true, - "taxCode" : "Membership Global Tax", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1020", - "ProductType__c" : "Supporter", - "triggerEvent" : "ContractEffective", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Supporter", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Membership - Supporter", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "8a1287c586832d250186a2040b1548fe", - "status" : "Active", - "name" : "Supporter - monthly (2023 Price)", - "description" : "", - "effectiveStartDate" : "2023-03-01", - "effectiveEndDate" : "2099-01-01", - "TermType__c" : "TERMED", - "FrontendId__c" : "Monthly", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A101", - "externalIdSourceSystem" : "", - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "8a12800986832d1d0186a20bf5136471", - "name" : "Supporter Membership - Monthly", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD9.99", "EUR9.99", "GBP7", "CAD12.99", "AUD14.99" ], - "pricing" : [ { - "currency" : "USD", - "price" : 9.990000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 9.990000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 7.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 12.990000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 14.990000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : true, - "taxCode" : "Membership Global Tax", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1020", - "ProductType__c" : "Supporter", - "triggerEvent" : "ContractEffective", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Supporter", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Membership - Supporter", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fb4c5481db014c69f4a1e03bbd", - "status" : "Expired", - "name" : "Non Founder Supporter - annual", - "description" : "", - "effectiveStartDate" : "2015-03-31", - "effectiveEndDate" : "2023-03-02", - "TermType__c" : null, - "FrontendId__c" : "Yearly", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A104", - "externalIdSourceSystem" : "", - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fb4c5481db014c69f4a2013bbf", - "name" : "Supporter Membership - Annual", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD69", "EUR49", "GBP49", "CAD69", "AUD100" ], - "pricing" : [ { - "currency" : "USD", - "price" : 69.000000000, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 49.000000000, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 49.000000000, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 69.000000000, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 100.000000000, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Annual", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Membership Global Tax", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1020", - "ProductType__c" : "Supporter", - "triggerEvent" : "ContractEffective", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Supporter", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Membership - Supporter", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fb4bb97034014bbbc562604ff7", - "status" : "Expired", - "name" : "Supporter - annual", - "description" : "", - "effectiveStartDate" : "2014-01-01", - "effectiveEndDate" : "2015-05-02", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A104", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fb4bb97034014bbbc5626f4ff9", - "name" : "Supporter Membership - Annual", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP50" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 50.000000000, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Annual", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Membership Global Tax", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1020", - "ProductType__c" : "Supporter", - "triggerEvent" : "ContractEffective", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Supporter", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Membership - Supporter", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fb4bb97034014bbbc562114fef", - "status" : "Expired", - "name" : "Supporter - monthly", - "description" : "", - "effectiveStartDate" : "2014-01-01", - "effectiveEndDate" : "2015-05-02", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A101", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fb4bb97034014bbbc562274ff1", - "name" : "Supporter Membership - Monthly", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP5" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 5.000000000, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Membership Global Tax", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1020", - "ProductType__c" : "Supporter", - "triggerEvent" : "ContractEffective", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Supporter", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Membership - Supporter", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0f94c547592014c69f5b0ff4f7e", - "status" : "Expired", - "name" : "Non Founder Supporter - monthly", - "description" : "", - "effectiveStartDate" : "2015-03-31", - "effectiveEndDate" : "2023-03-02", - "TermType__c" : null, - "FrontendId__c" : "Monthly", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A101", - "externalIdSourceSystem" : "", - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0f94c547592014c69f5b1204f80", - "name" : "Supporter Membership - Monthly", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD6.99", "EUR4.99", "GBP5", "CAD6.99", "AUD10" ], - "pricing" : [ { - "currency" : "USD", - "price" : 6.990000000, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 4.990000000, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 5.000000000, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 6.990000000, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 10.000000000, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Membership Global Tax", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1020", - "ProductType__c" : "Supporter", - "triggerEvent" : "ContractEffective", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Supporter", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Membership - Supporter", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - } ], - "productFeatures" : [ ] - }, { - "id" : "2c92a0ff5345f9200153559c6d2a3385", - "sku" : "ABC-00000012", - "name" : "Discounts", - "description" : "Template discount rate plans", - "category" : null, - "effectiveStartDate" : "2007-03-08", - "effectiveEndDate" : "2099-03-08", - "productNumber" : null, - "allowFeatureChanges" : false, - "ProductEnabled__c" : null, - "Entitlements__c" : null, - "AcquisitionProfile__c" : null, - "ProductType__c" : null, - "ProductLevel__c" : null, - "Tier__c" : null, - "productRatePlans" : [ { - "id" : "8a128432880a889f01880f873d2b1b7a", - "status" : "Active", - "name" : "PM 2023 - AUD - Price Freeze - 3 months", - "description" : "", - "effectiveStartDate" : "2023-05-12", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : null, - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : null, - "externalIdSourceSystem" : "", - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "8a12989f880a9e8001880f8836a32b33", - "name" : "PM 2023 - AUD - Price Freeze - 3 months", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "0% discount", "33.29% discount" ], - "pricing" : [ { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 33.290000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 3, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : null, - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : "PRP-00000004" - }, { - "id" : "8a1290f1880a9e7401880f834fb70bce", - "status" : "Active", - "name" : "PM 2023 - CAD - Price Freeze - 3 months", - "description" : "", - "effectiveStartDate" : "2023-05-12", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : null, - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : null, - "externalIdSourceSystem" : "", - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "8a12921d880a9e7901880f841d0a5c71", - "name" : "PM 2023 - CAD - Price Freeze - 3 months", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "0% discount", "46.19% discount" ], - "pricing" : [ { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 46.190000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 3, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : null, - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : "PRP-00000003" - }, { - "id" : "8a1282d4880a889501880f817b9d5c7a", - "status" : "Active", - "name" : " PM 2023 - EUR - Price Freeze - 3 months", - "description" : "", - "effectiveStartDate" : "2023-05-12", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : null, - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : null, - "externalIdSourceSystem" : "", - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "8a128cd5880a888f01880f8229e17ceb", - "name" : " PM 2023 - EUR - Price Freeze - 3 months", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "50.5% discount", "0% discount" ], - "pricing" : [ { - "currency" : "EUR", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 50.500000000, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 3, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : null, - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : "PRP-00000002" - }, { - "id" : "8a12867b880a888901880f7f007913f6", - "status" : "Active", - "name" : "PM 2023 - USD - Price Freeze - 3 months", - "description" : "", - "effectiveStartDate" : "2023-05-12", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : null, - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : null, - "externalIdSourceSystem" : "", - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "8a129e06880a9e7c01880f7fe5ec4d06", - "name" : "PM 2023 - USD - Price Freeze - 3 months", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "30.03% discount", "0% discount" ], - "pricing" : [ { - "currency" : "USD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 30.030000000, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 3, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : null, - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : "PRP-00000001" - }, { - "id" : "8a1297638021d0d7018022d4bb3342c2", - "status" : "Active", - "name" : "PM 2022 - 13% off for 3 months - Freeze", - "description" : null, - "effectiveStartDate" : "2022-04-13", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "8a1291128021d0cf018022d4bda76fdb", - "name" : "PM 2022 - 13% off for 3 months - Freeze", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "13% discount", "13% discount", "13% discount", "13% discount", "13% discount", "13% discount" ], - "pricing" : [ { - "currency" : "USD", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 13.000000000, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 13.000000000, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 13.000000000, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 13.000000000, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 13.000000000, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 13.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 3, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : null, - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "8a12972d8021d0d3018022d4c2a36f0c", - "status" : "Active", - "name" : "PM 2022 - 18% off for 3 months - Freeze", - "description" : null, - "effectiveStartDate" : "2022-04-13", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "8a128aa88021da2d018022d4c4f06176", - "name" : "PM 2022 - 18% off for 3 months - Freeze", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "18% discount", "18% discount", "18% discount", "18% discount", "18% discount", "18% discount" ], - "pricing" : [ { - "currency" : "USD", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 18.000000000, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 18.000000000, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 18.000000000, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 18.000000000, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 18.000000000, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 18.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 3, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : null, - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "8a1295918021d0d2018022d4ca0c4aac", - "status" : "Active", - "name" : "PM 2022 - 25% off for 3 months - Freeze", - "description" : null, - "effectiveStartDate" : "2022-04-13", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "8a1295918021d0d2018022d4cb8e4ab6", - "name" : "PM 2022 - 25% off for 3 months - Freeze", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "25% discount" ], - "pricing" : [ { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 25.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 3, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : null, - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "8a128f138021d0d6018022d4c65b0384", - "status" : "Active", - "name" : "PM 2022 - 20% off for 3 months - Freeze", - "description" : null, - "effectiveStartDate" : "2022-04-13", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "8a129f6f8021d0d4018022d4c84f5545", - "name" : "PM 2022 - 20% off for 3 months - Freeze", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "20% discount" ], - "pricing" : [ { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 20.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 3, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : null, - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "8a128eda8021d0d4018022d4af5e4318", - "status" : "Active", - "name" : "PM 2022 - 7% off for 3 months - Freeze", - "description" : null, - "effectiveStartDate" : "2022-04-13", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "8a128ed88021d0e0018022d4b17e7570", - "name" : "PM 2022 - 7% off for 3 months - Freeze", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "7% discount" ], - "pricing" : [ { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 7.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 3, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : null, - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "8a128eda8021d0d4018022d4aab842f9", - "status" : "Active", - "name" : "PM 2022 - 6% off for 3 months - Freeze", - "description" : null, - "effectiveStartDate" : "2022-04-13", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "8a12972d8021d0d3018022d4ad3c6db1", - "name" : "PM 2022 - 6% off for 3 months - Freeze", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "6% discount" ], - "pricing" : [ { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 6.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 3, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : null, - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "8a128e2d8021d0d4018022d4bf72421e", - "status" : "Active", - "name" : "PM 2022 - 17% off for 3 months - Freeze", - "description" : null, - "effectiveStartDate" : "2022-04-13", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "8a1291128021d0cf018022d4c126703b", - "name" : "PM 2022 - 17% off for 3 months - Freeze", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "17% discount" ], - "pricing" : [ { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 17.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 3, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : null, - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "8a128aa88021da2d018022d4b38b613e", - "status" : "Active", - "name" : "PM 2022 - 8% off for 3 months - Freeze", - "description" : null, - "effectiveStartDate" : "2022-04-13", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "8a128b618021d0cf018022d4b554090b", - "name" : "PM 2022 - 8% off for 3 months - Freeze", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "8% discount", "8% discount", "8% discount", "8% discount", "8% discount", "8% discount" ], - "pricing" : [ { - "currency" : "USD", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 8.000000000, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 8.000000000, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 8.000000000, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 8.000000000, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 8.000000000, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 8.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 3, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : null, - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "8a128aa88021da2d018022d4a6856101", - "status" : "Active", - "name" : "PM 2022 - 5% off for 3 months - Freeze", - "description" : null, - "effectiveStartDate" : "2022-04-13", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "8a1295918021d0d2018022d4a8784983", - "name" : "PM 2022 - 5% off for 3 months - Freeze", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "5% discount" ], - "pricing" : [ { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 5.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 3, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : null, - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "8a12892d8021d0dc018022d4b6f94f05", - "status" : "Active", - "name" : "PM 2022 - 11% off for 3 months - Freeze", - "description" : null, - "effectiveStartDate" : "2022-04-13", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "8a128eda8021d0d4018022d4b9024332", - "name" : "PM 2022 - 11% off for 3 months - Freeze", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "11% discount" ], - "pricing" : [ { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 11.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 3, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : null, - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "8a12865b8021d0d9018022d2a2e52c74", - "status" : "Active", - "name" : "PM 2022 - 10% off for 12 months - Max Discount", - "description" : null, - "effectiveStartDate" : "2022-04-13", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "8a1295258021d0d3018022d2b4251038", - "name" : "PM 2022 - 10% off for 12 months - Max Discount", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "10% discount", "10% discount", "10% discount", "10% discount", "10% discount", "10% discount" ], - "pricing" : [ { - "currency" : "USD", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 10.000000000, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 10.000000000, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 10.000000000, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 10.000000000, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 10.000000000, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 10.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 12, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : null, - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "8a12801c8021d0e8018022d4a1815301", - "status" : "Active", - "name" : "PM 2022 - 4% off for 3 months - Freeze", - "description" : null, - "effectiveStartDate" : "2022-04-13", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "8a129b9c8021d0d2018022d4a4417880", - "name" : "PM 2022 - 4% off for 3 months - Freeze", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "4% discount" ], - "pricing" : [ { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 4.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 3, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : null, - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0ff74296d7201742b7daf20123d", - "status" : "Active", - "name" : "Digipack Acq Offer - 1st Payment", - "description" : "a percentage discount on Annual Digipack subscriptions, where the percentage is dependent on the billing currency. This discount is available so that our Customer Service Reps are able to provide the same level of discounting as is available on the website, to subscriptions acquired through the call centre", - "effectiveStartDate" : "2020-08-27", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : null, - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0ff74296d7201742b7daf2f123f", - "name" : "Digipack Acq Offer - 1st Payment", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "17.09% discount", "25.53% discount", "16.11% discount", "16.81% discount", "20.09% discount", "18.61% discount" ], - "pricing" : [ { - "currency" : "USD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 17.090000000, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 25.530000000, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 16.110000000, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 16.810000000, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 20.090000000, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 18.610000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 12, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0ff65c757150165c8eab88b788e", - "status" : "Expired", - "name" : "Home Delivery Adjustment charge", - "description" : "Call centre version", - "effectiveStartDate" : "2018-09-11", - "effectiveEndDate" : "2019-09-11", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0ff65c757150165c8eab8c07896", - "name" : "Adjustment charge", - "type" : "OneTime", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP0" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "One_Time", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : null, - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : null, - "billingPeriodAlignment" : null, - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : null, - "taxable" : false, - "taxCode" : "", - "taxMode" : null, - "ProductCode__c" : "P1299", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Home Delivery", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Home Delivery", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0ff64176cd40164232c8ec97661", - "status" : "Active", - "name" : "Cancellation Save Discount - 25% off for 3 months", - "description" : "", - "effectiveStartDate" : "2018-06-22", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0ff64176cd40164232c8eda7664", - "name" : "25% discount on subscription for 3 months", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "25% discount", "25% discount", "25% discount", "25% discount", "25% discount", "25% discount" ], - "pricing" : [ { - "currency" : "USD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 25.000000000, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 25.000000000, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 25.000000000, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 25.000000000, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 25.000000000, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 25.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 3, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0ff5e09bd67015e0a93efe86d2e", - "status" : "Active", - "name" : "Customer Experience Adjustment - Voucher", - "description" : "", - "effectiveStartDate" : "2016-08-01", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : "TERMED", - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0ff5e09bd67015e0a93f0026d34", - "name" : "Adjustment charge", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP0" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "DefaultFromCustomer", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : "", - "taxMode" : null, - "ProductCode__c" : "P1299", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Voucher Book", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Voucher Book", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0ff56fe33f301572314aed277fb", - "status" : "Active", - "name" : "Percentage Adjustment", - "description" : "", - "effectiveStartDate" : "2007-09-13", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fc56fe26ba01572315d66d026e", - "name" : "Adjustment charge", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "100% discount" ], - "pricing" : [ { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 100.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "DefaultFromCustomer", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : true, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Home Delivery", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Home Delivery", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0ff5345f9220153559d915d5c26", - "status" : "Active", - "name" : "Percentage", - "description" : "", - "effectiveStartDate" : "2007-03-08", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : null, - "RatePlanType__c" : "Promotion", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fd5345efa10153559e97bb76c6", - "name" : "Percentage", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "0% discount", "0% discount", "0% discount", "0% discount", "0% discount", "0% discount" ], - "pricing" : [ { - "currency" : "USD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "DefaultFromCustomer", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : null, - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fe750b35d001750d4522f43817", - "status" : "Active", - "name" : "DO NOT USE MANUALLY: Holiday credit - automated - Digital Voucher", - "description" : "Holiday credit applied automatically by the Holiday Stop Processor.\n\n*** Not for manual use! ***\n\nSee:\nhttps://github.com/guardian/support-service-lambdas/tree/master/handlers/holiday-stop-processor\n", - "effectiveStartDate" : "2020-09-14", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fe750b35d001750d4523103819", - "name" : "Holiday Credit", - "type" : "OneTime", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD0", "NZD0", "EUR0", "GBP0", "CAD0", "AUD0" ], - "pricing" : [ { - "currency" : "USD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "One_Time", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : null, - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : null, - "billingPeriodAlignment" : null, - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : null, - "taxable" : false, - "taxCode" : "Guardian Weekly", - "taxMode" : null, - "ProductCode__c" : "P1299", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fe7375d60901737c64808e4be1", - "status" : "Active", - "name" : "DO NOT USE MANUALLY: Delivery-problem credit - automated - Home Delivery", - "description" : "Credit for a delivery problem, applied automatically by the delivery-problem credit processor.\n\n*** Not for manual use! ***\n\nSee:\nTODO - reference to codebase here\n", - "effectiveStartDate" : "2020-01-13", - "effectiveEndDate" : "2099-01-01", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fe7375d60901737c6480bc4be3", - "name" : "Delivery-problem credit", - "type" : "OneTime", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD0", "NZD0", "EUR0", "GBP0", "CAD0", "AUD0" ], - "pricing" : [ { - "currency" : "USD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "One_Time", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : null, - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : null, - "billingPeriodAlignment" : null, - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : null, - "taxable" : false, - "taxCode" : "Guardian Weekly", - "taxMode" : null, - "ProductCode__c" : "P1299", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Home Delivery", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Home Delivery", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fe72c5c3480172c7f1fb545f81", - "status" : "Active", - "name" : "PM 2020 - 11% off for 3 months - Sunday Freeze", - "description" : "", - "effectiveStartDate" : "2020-06-29", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : null, - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fe72c5c3480172c7f1fb7f5f87", - "name" : "PM 2020 - 11% off for 3 months - Sunday Freeze", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "11% discount" ], - "pricing" : [ { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 11.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 3, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fe65f0ac1f0165f2189bca248c", - "status" : "Active", - "name" : "Digipack Discount - 20% off for 12 months", - "description" : "", - "effectiveStartDate" : "2018-06-22", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : null, - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fe65f0ac1f0165f2189bdf248f", - "name" : "20% discount on subscription for 12 months", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "20% discount", "20% discount", "20% discount", "20% discount", "20% discount", "20% discount" ], - "pricing" : [ { - "currency" : "USD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 20.000000000, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 20.000000000, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 20.000000000, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 20.000000000, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 20.000000000, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 20.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 12, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fe62b7edde0162dd29b8124a8e", - "status" : "Active", - "name" : "Guardian Weekly Adjustment charge", - "description" : "To fix premature refunds", - "effectiveStartDate" : "2018-04-19", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fe62b7edde0162dd29b83f4a9e", - "name" : "Adjustment charge", - "type" : "OneTime", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD0", "NZD0", "EUR0", "GBP0", "CAD0", "AUD0" ], - "pricing" : [ { - "currency" : "USD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "One_Time", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : null, - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : null, - "billingPeriodAlignment" : null, - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : null, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "Adjustment for premature refunds where the product was not removed in advance.", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fe5fe26834015fe33c70a24f50", - "status" : "Active", - "name" : "Black Friday 50% for 3 months for existing customers", - "description" : "", - "effectiveStartDate" : "2007-03-08", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : null, - "RatePlanType__c" : "Promotion", - "PromotionCode__c" : "TBC", - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fe5fe26834015fe33c70b74f52", - "name" : "Percentage", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "0% discount", "0% discount", "0% discount", "50% discount", "0% discount", "0% discount" ], - "pricing" : [ { - "currency" : "USD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 50.000000000, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 3, - "upToPeriodsType" : "Months", - "billingDay" : "DefaultFromCustomer", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : null, - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fe56fe33ff015723143e4778be", - "status" : "Active", - "name" : "Fixed Adjustment", - "description" : "", - "effectiveStartDate" : "2007-09-13", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0ff576f2f760157aec73aa34ccc", - "name" : "Adjustment charge", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP0" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "DefaultFromCustomer", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : false, - "taxCode" : "", - "taxMode" : null, - "ProductCode__c" : "P1299", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize upon invoicing", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Home Delivery", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Home Delivery", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fd6f1426ef016f18a86c515ed7", - "status" : "Active", - "name" : "Cancellation Save Discount - 20% off for 12 months", - "description" : "", - "effectiveStartDate" : "2019-12-18", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fd6f1426ef016f18a86c705ed9", - "name" : "20% discount on subscription for 12 months", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "25% discount", "25% discount", "25% discount", "20% discount", "25% discount", "25% discount" ], - "pricing" : [ { - "currency" : "USD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 25.000000000, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 25.000000000, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 25.000000000, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 20.000000000, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 25.000000000, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 25.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 12, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fc6ae918b6016b080950e96d75", - "status" : "Active", - "name" : "Guardian Weekly Holiday Credit", - "description" : "", - "effectiveStartDate" : "2019-05-30", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fc6ae918b6016b0809512f6d7f", - "name" : "Holiday Credit", - "type" : "Usage", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD0", "NZD0", "EUR0", "GBP0", "CAD0", "AUD0" ], - "pricing" : [ { - "currency" : "USD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 1, - "upToPeriodsType" : "Billing_Periods", - "billingDay" : "DefaultFromCustomer", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : "ByBillingPeriod", - "billingPeriod" : "Annual", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fc610e738901612d83fce461fd", - "status" : "Expired", - "name" : "Tabloid launch 25% off for one year for existing customers", - "description" : "", - "effectiveStartDate" : "2017-12-19", - "effectiveEndDate" : "2020-12-19", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : "GTL99C", - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fc610e738901612d85acb06a73", - "name" : "Percentage", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "25% discount" ], - "pricing" : [ { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 25.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 12, - "upToPeriodsType" : "Months", - "billingDay" : "DefaultFromCustomer", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : null, - "triggerEvent" : "CustomerAcceptance", - "description" : "25% off for one year", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fc5b42d2c9015b6259f7f40040", - "status" : "Expired", - "name" : "Guardian Weekly Holiday Credit - old", - "description" : "", - "effectiveStartDate" : "2007-08-18", - "effectiveEndDate" : "2019-05-29", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a00e6ad50f58016ad9ca59962c8c", - "name" : "Holiday Credit", - "type" : "OneTime", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD0", "NZD0", "EUR0", "GBP0", "CAD0", "AUD0" ], - "pricing" : [ { - "currency" : "USD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "One_Time", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : null, - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : null, - "billingPeriodAlignment" : null, - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : null, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a0ff5b42e3ad015b627c142f072a", - "name" : "Holiday Credit", - "type" : "Usage", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD0", "NZD0", "EUR0", "GBP0", "CAD0", "AUD0" ], - "pricing" : [ { - "currency" : "USD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 1, - "upToPeriodsType" : "Billing_Periods", - "billingDay" : "DefaultFromCustomer", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : "ByBillingPeriod", - "billingPeriod" : "Annual", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fc596d31ea01598d623a297897", - "status" : "Active", - "name" : "Home Delivery Holiday Credit v2", - "description" : "", - "effectiveStartDate" : "2007-08-18", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fc596d31ea01598d72baf33417", - "name" : "Holiday Credit", - "type" : "Usage", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP0" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "DefaultFromCustomer", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : "ByBillingPeriod", - "billingPeriod" : "Annual", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : false, - "taxCode" : "", - "taxMode" : null, - "ProductCode__c" : "P1299", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Home Delivery", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Home Delivery", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fc569c311201569dfbecb4215f", - "status" : "Expired", - "name" : "Home Delivery Holiday Credit", - "description" : "Call centre version", - "effectiveStartDate" : "2007-08-18", - "effectiveEndDate" : "2017-07-31", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fe569c441901569e03b5cc619e", - "name" : "Holiday Credit", - "type" : "OneTime", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP0" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "One_Time", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : null, - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : null, - "billingPeriodAlignment" : null, - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : null, - "taxable" : false, - "taxCode" : "", - "taxMode" : null, - "ProductCode__c" : "P1299", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Home Delivery", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Home Delivery", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0117468816901748bdb3a8c1ac4", - "status" : "Active", - "name" : "DO NOT USE MANUALLY: Holiday credit - automated - Voucher", - "description" : "Holiday credit applied automatically by the Holiday Stop Processor.\n\n*** Not for manual use! ***\n\nSee:\nhttps://github.com/guardian/support-service-lambdas/tree/master/handlers/holiday-stop-processor\n", - "effectiveStartDate" : "2020-09-14", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0117468816901748bdb3aab1ac6", - "name" : "Holiday Credit", - "type" : "OneTime", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD0", "NZD0", "EUR0", "GBP0", "CAD0", "AUD0" ], - "pricing" : [ { - "currency" : "USD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "One_Time", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : null, - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : null, - "billingPeriodAlignment" : null, - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : null, - "taxable" : false, - "taxCode" : "Guardian Weekly", - "taxMode" : null, - "ProductCode__c" : "P1299", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Voucher Book", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Voucher Book", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a01072c5c2e30172c7f0764772c9", - "status" : "Active", - "name" : "PM 2020 - 6% off for 3 months - Weekend Freeze", - "description" : "", - "effectiveStartDate" : "2020-06-29", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : null, - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a01072c5c2e30172c7f0766372cb", - "name" : "PM 2020 - 6% off for 3 months - Weekend Freeze", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "6% discount" ], - "pricing" : [ { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 6.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 3, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a01072c5c2e20172c7efe01125c6", - "status" : "Active", - "name" : "PM 2020 - 9% off for 3 months - Sixday Freeze", - "description" : "", - "effectiveStartDate" : "2020-06-29", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : null, - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a01072c5c2e20172c7efe02325ca", - "name" : "PM 2020 - 9% off for 3 months - Sixday Freeze", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "9% discount" ], - "pricing" : [ { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 9.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 3, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a01072c5c2e20172c7ee96b91a7c", - "status" : "Active", - "name" : "PM 2020 - 11% off for 3 months - Everyday Freeze", - "description" : "", - "effectiveStartDate" : "2020-06-29", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : null, - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a01072c5c2e20172c7ee96e71a7e", - "name" : "PM 2020 - 11% off for 3 months - Everyday Freeze", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "11% discount" ], - "pricing" : [ { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 11.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 3, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a00f7468817d01748bd88f0d1d6c", - "status" : "Active", - "name" : "DO NOT USE MANUALLY: Holiday credit - automated - Home Delivery", - "description" : "Holiday credit applied automatically by the Holiday Stop Processor.\n\n*** Not for manual use! ***\n\nSee:\nhttps://github.com/guardian/support-service-lambdas/tree/master/handlers/holiday-stop-processor\n", - "effectiveStartDate" : "2020-09-14", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a00f7468817d01748bd88f2e1d6e", - "name" : "Holiday Credit", - "type" : "OneTime", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD0", "NZD0", "EUR0", "GBP0", "CAD0", "AUD0" ], - "pricing" : [ { - "currency" : "USD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "One_Time", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : null, - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : null, - "billingPeriodAlignment" : null, - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : null, - "taxable" : false, - "taxCode" : "Guardian Weekly", - "taxMode" : null, - "ProductCode__c" : "P1299", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Home Delivery", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Home Delivery", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a00d6f9de7f6016f9f6f52765aa4", - "status" : "Active", - "name" : "DO NOT USE MANUALLY: Delivery-problem credit - automated - GW", - "description" : "Credit for a delivery problem, applied automatically by the delivery-problem credit processor.\n\n*** Not for manual use! ***\n\nSee:\nTODO - reference to codebase here\n", - "effectiveStartDate" : "2020-01-13", - "effectiveEndDate" : "2099-01-01", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a00d6f9de7f6016f9f6f529e5aaf", - "name" : "Delivery-problem credit", - "type" : "OneTime", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD0", "NZD0", "EUR0", "GBP0", "CAD0", "AUD0" ], - "pricing" : [ { - "currency" : "USD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "One_Time", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : null, - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : null, - "billingPeriodAlignment" : null, - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : null, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a00872c5d4770172c7f140a32d62", - "status" : "Active", - "name" : "PM 2020 - 16% off for 3 months - Saturday Freeze", - "description" : "", - "effectiveStartDate" : "2020-06-29", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : null, - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a00872c5d4770172c7f140c52d64", - "name" : "PM 2020 - 16% off for 3 months - Saturday Freeze", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "16% discount" ], - "pricing" : [ { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 16.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 3, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0086f1426d1016f18a9c71058a5", - "status" : "Active", - "name" : "Acquisition Discount - 25% off for 12 months", - "description" : "", - "effectiveStartDate" : "2019-12-18", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0086f1426d1016f18a9c73058a7", - "name" : "25% discount on subscription for 12 months", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "25% discount", "25% discount", "25% discount", "25% discount", "25% discount", "25% discount" ], - "pricing" : [ { - "currency" : "USD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 25.000000000, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 25.000000000, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 25.000000000, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 25.000000000, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 25.000000000, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 25.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 12, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0086b25c750016b32548239308d", - "status" : "Active", - "name" : "Customer Experience - Complementary 100% discount", - "description" : "Head-office use only", - "effectiveStartDate" : "2007-03-08", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : null, - "RatePlanType__c" : "Promotion", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0086b25c750016b32548256308f", - "name" : "Percentage", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "100% discount", "100% discount", "100% discount", "100% discount", "100% discount", "100% discount" ], - "pricing" : [ { - "currency" : "USD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 100.000000000, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 100.000000000, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 100.000000000, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 100.000000000, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 100.000000000, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 100.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "DefaultFromCustomer", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : null, - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a00864176ce90164232ac0d90fc1", - "status" : "Active", - "name" : "Cancellation Save Discount - 50% off for 3 months", - "description" : "", - "effectiveStartDate" : "2018-06-22", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0ff64176cd50164232c7e493410", - "name" : "50% discount on subscription for 3 months", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "50% discount", "50% discount", "50% discount", "50% discount", "50% discount", "50% discount" ], - "pricing" : [ { - "currency" : "USD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 50.000000000, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 50.000000000, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 50.000000000, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 50.000000000, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 50.000000000, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 50.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 3, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a00772c5c2e90172c7ebd62a68c4", - "status" : "Active", - "name" : "PM 2020 - 10% off for 12 months - Max Discount", - "description" : "", - "effectiveStartDate" : "2020-06-29", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : null, - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a01072c5c2e30172c7ed605b60d3", - "name" : "PM 2020 - 10% off for 12 months - Max Discount", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "10% discount", "10% discount", "10% discount", "10% discount", "10% discount" ], - "pricing" : [ { - "currency" : "USD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 10.000000000, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 10.000000000, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 10.000000000, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 10.000000000, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 10.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 12, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0076ae9189c016b080c930a6186", - "status" : "Active", - "name" : "DO NOT USE MANUALLY: Holiday credit - automated - GW", - "description" : "Holiday credit applied automatically by the Holiday Stop Processor.\n\n*** Not for manual use! ***\n\nSee:\nhttps://github.com/guardian/support-service-lambdas/tree/master/handlers/holiday-stop-processor\n", - "effectiveStartDate" : "2019-05-30", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0086ae928d7016b080f638477a6", - "name" : "Holiday Credit", - "type" : "OneTime", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD0", "NZD0", "EUR0", "GBP0", "CAD0", "AUD0" ], - "pricing" : [ { - "currency" : "USD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "One_Time", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : null, - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : null, - "billingPeriodAlignment" : null, - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : null, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "8a12902787109bb7018712c479592ee9", - "status" : "Active", - "name" : "PM 2023 - 40% off for 12 months - Freeze", - "description" : "", - "effectiveStartDate" : "2023-03-29", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : null, - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : null, - "externalIdSourceSystem" : "", - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "8a1290f187109bb0018712c5227f7842", - "name" : "PM 2023 - 40% off for 12 months - Freeze", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "40% discount", "40% discount", "40% discount", "40% discount", "40% discount", "40% discount" ], - "pricing" : [ { - "currency" : "USD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 40.000000000, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 40.000000000, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 40.000000000, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 40.000000000, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 40.000000000, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 40.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 12, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : null, - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "8a12989f87109bb0018712c33dc63674", - "status" : "Active", - "name" : "PM 2023 - 40% off for 3 months - Freeze", - "description" : "", - "effectiveStartDate" : "2023-03-29", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : null, - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : null, - "externalIdSourceSystem" : "", - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "8a12867b871080e2018712c3f4177d3d", - "name" : "PM 2023 - 40% off for 3 months - Freeze", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "40% discount", "40% discount", "40% discount", "40% discount", "40% discount", "40% discount" ], - "pricing" : [ { - "currency" : "USD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 40.000000000, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 40.000000000, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 40.000000000, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 40.000000000, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 40.000000000, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 40.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 3, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : null, - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - } ], - "productFeatures" : [ ] - }, { - "id" : "8a12865b8219d9b4018221061563643f", - "sku" : "ABC-00000032", - "name" : "Supporter Plus", - "description" : "New Support product July 2022", - "category" : null, - "effectiveStartDate" : "2013-02-16", - "effectiveEndDate" : "2099-02-03", - "productNumber" : null, - "allowFeatureChanges" : false, - "ProductEnabled__c" : "True", - "Entitlements__c" : null, - "AcquisitionProfile__c" : "Paid", - "ProductType__c" : "Supporter Plus", - "ProductLevel__c" : null, - "Tier__c" : null, - "productRatePlans" : [ { - "id" : "8a12865b8219d9b401822106192b64dc", - "status" : "Expired", - "name" : "Supporter Plus Monthly", - "description" : "", - "effectiveStartDate" : "2013-03-11", - "effectiveEndDate" : "2023-07-12", - "TermType__c" : null, - "FrontendId__c" : "Monthly", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A101", - "externalIdSourceSystem" : "", - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "8a12865b8219d9b401822106194e64e3", - "name" : "Supporter Plus Monthly Charge", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD13", "NZD17", "EUR10", "GBP10", "CAD13", "AUD17" ], - "pricing" : [ { - "currency" : "USD", - "price" : 13.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 17.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 10.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 10.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 13.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 17.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Supporter Plus Global Tax", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1015", - "ProductType__c" : "Supporter Plus", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Supporter Plus", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Supporter Plus", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "8a12865b8219d9b40182210618a464ba", - "status" : "Expired", - "name" : "Supporter Plus Annual", - "description" : "", - "effectiveStartDate" : "2013-03-11", - "effectiveEndDate" : "2023-07-12", - "TermType__c" : null, - "FrontendId__c" : "Yearly", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A104", - "externalIdSourceSystem" : "", - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "8a12865b8219d9b40182210618c664c1", - "name" : "Supporter Plus Annual Charge", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD120", "NZD160", "EUR95", "GBP95", "CAD120", "AUD160" ], - "pricing" : [ { - "currency" : "USD", - "price" : 120.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 160.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 95.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 95.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 120.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 160.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Annual", - "billingPeriodAlignment" : "AlignToTermStart", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : true, - "taxCode" : "Supporter Plus Global Tax", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1015", - "ProductType__c" : "Supporter Plus", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Supporter Plus", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Supporter Plus", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "8a128ed885fc6ded018602296ace3eb8", - "status" : "Active", - "name" : "Supporter Plus V2 - Monthly", - "description" : "", - "effectiveStartDate" : "2013-03-11", - "effectiveEndDate" : "2099-01-12", - "TermType__c" : null, - "FrontendId__c" : "Monthly", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A101", - "externalIdSourceSystem" : "", - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "8a128d7085fc6dec01860234cd075270", - "name" : "Contribution", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD0", "NZD0", "EUR0", "GBP0", "CAD0", "AUD0" ], - "pricing" : [ { - "currency" : "USD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : true, - "taxCode" : "Contribution", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1015", - "ProductType__c" : "Contributor", - "triggerEvent" : "ContractEffective", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize upon invoicing", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Supporter Plus - Contribution", - "deferredRevenueAccountingCodeType" : "SalesRevenue", - "recognizedRevenueAccountingCode" : "Supporter Plus - Contribution", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "8a128ed885fc6ded018602296af13eba", - "name" : "Supporter Plus Monthly Charge", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD13", "NZD17", "EUR10", "GBP10", "CAD13", "AUD17" ], - "pricing" : [ { - "currency" : "USD", - "price" : 13.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 17.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 10.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 10.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 13.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 17.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Supporter Plus Global Tax", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1015", - "ProductType__c" : "Supporter Plus", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Supporter Plus", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Supporter Plus", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "8a128ed885fc6ded01860228f77e3d5a", - "status" : "Active", - "name" : "Supporter Plus V2 - Annual", - "description" : "", - "effectiveStartDate" : "2013-03-11", - "effectiveEndDate" : "2099-01-12", - "TermType__c" : null, - "FrontendId__c" : "Yearly", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A104", - "externalIdSourceSystem" : "", - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "8a12892d85fc6df4018602451322287f", - "name" : "Contribution", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD0", "NZD0", "EUR0", "GBP0", "CAD0", "AUD0" ], - "pricing" : [ { - "currency" : "USD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Annual", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : true, - "taxCode" : "Contribution", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1015", - "ProductType__c" : "Contributor", - "triggerEvent" : "ContractEffective", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize upon invoicing", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Supporter Plus - Contribution", - "deferredRevenueAccountingCodeType" : "SalesRevenue", - "recognizedRevenueAccountingCode" : "Supporter Plus - Contribution", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "8a128ed885fc6ded01860228f7cb3d5f", - "name" : "Supporter Plus Annual Charge", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD120", "NZD160", "EUR95", "GBP95", "CAD120", "AUD160" ], - "pricing" : [ { - "currency" : "USD", - "price" : 120.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 160.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 95.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 95.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 120.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 160.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Annual", - "billingPeriodAlignment" : "AlignToTermStart", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : true, - "taxCode" : "Supporter Plus Global Tax", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1015", - "ProductType__c" : "Supporter Plus", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Supporter Plus", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Supporter Plus", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - } ], - "productFeatures" : [ ] - }, { - "id" : "2c92a0fe6619b4b901661aaf826435de", - "sku" : "ABC-00000030", - "name" : "Guardian Weekly - ROW", - "description" : "", - "category" : null, - "effectiveStartDate" : "2018-09-19", - "effectiveEndDate" : "2099-10-01", - "productNumber" : null, - "allowFeatureChanges" : false, - "ProductEnabled__c" : "True", - "Entitlements__c" : null, - "AcquisitionProfile__c" : "Paid", - "ProductType__c" : "Guardian Weekly", - "ProductLevel__c" : null, - "Tier__c" : null, - "productRatePlans" : [ { - "id" : "2c92a0ff79ac64e30179ae45669b3a83", - "status" : "Active", - "name" : "GW Oct 18 - Monthly - ROW", - "description" : "", - "effectiveStartDate" : "2018-09-19", - "effectiveEndDate" : "2099-09-19", - "TermType__c" : null, - "FrontendId__c" : "Monthly", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A101", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0ff79ac64e30179ae4566cb3a86", - "name" : "GW Oct 18 - Monthly - ROW", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD30", "GBP24.8" ], - "pricing" : [ { - "currency" : "USD", - "price" : 30.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 24.800000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0ff67cebd140167f0a2f66a12eb", - "status" : "Active", - "name" : "GW GIFT Oct 18 - 1 Year - ROW", - "description" : "", - "effectiveStartDate" : "2018-09-19", - "effectiveEndDate" : "2099-09-19", - "TermType__c" : null, - "FrontendId__c" : "OneYear", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A108", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0ff67cebd140167f0a2f68912ed", - "name" : "GW GIFT Oct 18 - 1 Year - ROW", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD360", "NZD530", "EUR270", "GBP297.6", "CAD345", "AUD424" ], - "pricing" : [ { - "currency" : "USD", - "price" : 360.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 530.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 270.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 297.600000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 345.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 424.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 1, - "upToPeriodsType" : "Billing_Periods", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Annual", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly Gift", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly Gift", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fe6619b4b601661ab300222651", - "status" : "Active", - "name" : "GW Oct 18 - Annual - ROW", - "description" : "", - "effectiveStartDate" : "2018-09-19", - "effectiveEndDate" : "2099-09-19", - "TermType__c" : null, - "FrontendId__c" : "Yearly", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A104", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fe6619b4b601661ab3002f2653", - "name" : "GW Oct 18 - Annual - ROW", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD360", "NZD530", "EUR270", "GBP297.6", "CAD345", "AUD424" ], - "pricing" : [ { - "currency" : "USD", - "price" : 360.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 530.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 270.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 297.600000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 345.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 424.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Annual", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0086619bf8901661ab545f51b21", - "status" : "Active", - "name" : "GW Oct 18 - Six for Six - ROW", - "description" : "", - "effectiveStartDate" : "2018-09-19", - "effectiveEndDate" : "2099-09-19", - "TermType__c" : null, - "FrontendId__c" : "SixWeeks", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A101", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0086619bf8901661ab546091b23", - "name" : "GW Oct 18 - First 6 issues - ROW", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD6", "NZD6", "EUR6", "GBP6", "CAD6", "AUD6" ], - "pricing" : [ { - "currency" : "USD", - "price" : 6.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 6.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 6.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 6.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 6.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 6.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 1, - "upToPeriodsType" : "Billing_Periods", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Specific_Weeks", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : 6, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0086619bf8901661ab02752722f", - "status" : "Active", - "name" : "GW Oct 18 - Quarterly - ROW", - "description" : "", - "effectiveStartDate" : "2018-09-19", - "effectiveEndDate" : "2099-09-19", - "TermType__c" : null, - "FrontendId__c" : "Quarterly", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A102", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0ff6619bf8b01661ab2d0396eb2", - "name" : "GW Oct 18 - Quarterly - ROW", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD90", "NZD132.5", "EUR67.5", "GBP74.4", "CAD86.25", "AUD106" ], - "pricing" : [ { - "currency" : "USD", - "price" : 90.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 132.500000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 67.500000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 74.400000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 86.250000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 106.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Quarter", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0076dd9892e016df8503e7c6c48", - "status" : "Active", - "name" : "GW GIFT Oct 18 - 3 Month - ROW", - "description" : "", - "effectiveStartDate" : "2018-09-19", - "effectiveEndDate" : "2099-09-19", - "TermType__c" : null, - "FrontendId__c" : "ThreeMonths", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A106", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0076dd9892e016df8503e936c4a", - "name" : "GW GIFT Oct 18 - 3 Month - ROW", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD90", "NZD132.5", "EUR67.5", "GBP74.4", "CAD86.25", "AUD106" ], - "pricing" : [ { - "currency" : "USD", - "price" : 90.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 132.500000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 67.500000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 74.400000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 86.250000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 106.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 1, - "upToPeriodsType" : "Billing_Periods", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Quarter", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly Gift", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly Gift", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - } ], - "productFeatures" : [ ] - }, { - "id" : "2c92a0ff6619bf8901661aa3247c4b1d", - "sku" : "ABC-00000029", - "name" : "Guardian Weekly - Domestic", - "description" : "", - "category" : null, - "effectiveStartDate" : "2018-09-18", - "effectiveEndDate" : "2099-10-01", - "productNumber" : null, - "allowFeatureChanges" : false, - "ProductEnabled__c" : "True", - "Entitlements__c" : null, - "AcquisitionProfile__c" : "Paid", - "ProductType__c" : "Guardian Weekly", - "ProductLevel__c" : null, - "Tier__c" : null, - "productRatePlans" : [ { - "id" : "2c92a0ff67cebd0d0167f0a1a834234e", - "status" : "Active", - "name" : "GW GIFT Oct 18 - 1 Year - Domestic", - "description" : "", - "effectiveStartDate" : "2018-09-19", - "effectiveEndDate" : "2099-09-19", - "TermType__c" : null, - "FrontendId__c" : "OneYear", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A108", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0ff67cebd0d0167f0a1a85b2350", - "name" : "GW GIFT Oct 18 - 1 Year - Domestic", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD330", "NZD546", "EUR282", "GBP165", "CAD360", "AUD432" ], - "pricing" : [ { - "currency" : "USD", - "price" : 330.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 546.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 282.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 165.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 360.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 432.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 1, - "upToPeriodsType" : "Billing_Periods", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Annual", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly Gift", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly Gift", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fe6619b4b901661aa8e66c1692", - "status" : "Active", - "name" : "GW Oct 18 - Annual - Domestic", - "description" : "", - "effectiveStartDate" : "2018-09-19", - "effectiveEndDate" : "2099-09-19", - "TermType__c" : null, - "FrontendId__c" : "Yearly", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A104", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fe6619b4b901661aa8e6811695", - "name" : "GW Oct 18 - Annual - Domestic", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD330", "NZD546", "EUR282", "GBP165", "CAD360", "AUD432" ], - "pricing" : [ { - "currency" : "USD", - "price" : 330.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 546.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 282.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 165.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 360.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 432.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Annual", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fe6619b4b301661aa494392ee2", - "status" : "Active", - "name" : "GW Oct 18 - Quarterly - Domestic", - "description" : "", - "effectiveStartDate" : "2018-09-19", - "effectiveEndDate" : "2099-09-19", - "TermType__c" : null, - "FrontendId__c" : "Quarterly", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A102", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fe6619b4b601661aa8b74e623f", - "name" : "GW Oct 18 - Quarterly - Domestic", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD82.5", "NZD136.5", "EUR70.5", "GBP41.25", "CAD90", "AUD108" ], - "pricing" : [ { - "currency" : "USD", - "price" : 82.500000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 136.500000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 70.500000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 41.250000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 90.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 108.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Quarter", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fd79ac64b00179ae3f9d474960", - "status" : "Active", - "name" : "GW Oct 18 - Monthly - Domestic", - "description" : "", - "effectiveStartDate" : "2018-09-19", - "effectiveEndDate" : "2099-09-19", - "TermType__c" : null, - "FrontendId__c" : "Monthly", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A101", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fd79ac64b00179ae3f9d704962", - "name" : "GW Oct 18 - Monthly - Domestic", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD27.5", "NZD45.5", "EUR23.5", "GBP13.75", "CAD30", "AUD36" ], - "pricing" : [ { - "currency" : "USD", - "price" : 27.500000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 45.500000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 23.500000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 13.750000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 30.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 36.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a00e6dd988e2016df85387417498", - "status" : "Active", - "name" : "GW GIFT Oct 18 - 3 Month - Domestic", - "description" : "", - "effectiveStartDate" : "2018-09-19", - "effectiveEndDate" : "2099-09-19", - "TermType__c" : null, - "FrontendId__c" : "ThreeMonths", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A106", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a00e6dd988e2016df853875d74c6", - "name" : "GW GIFT Oct 18 - 3 Month - Domestic", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD82.5", "NZD136.5", "EUR70.5", "GBP41.25", "CAD90", "AUD108" ], - "pricing" : [ { - "currency" : "USD", - "price" : 82.500000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 136.500000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 70.500000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 41.250000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 90.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 108.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 1, - "upToPeriodsType" : "Billing_Periods", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Quarter", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly Gift", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly Gift", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0086619bf8901661aaac94257fe", - "status" : "Active", - "name" : "GW Oct 18 - Six for Six - Domestic", - "description" : "", - "effectiveStartDate" : "2018-09-19", - "effectiveEndDate" : "2099-09-19", - "TermType__c" : null, - "FrontendId__c" : "SixWeeks", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A101", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0086619bf8901661aaac95d5800", - "name" : "GW Oct 18 - First 6 issues - Domestic", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD6", "NZD6", "EUR6", "GBP6", "CAD6", "AUD6" ], - "pricing" : [ { - "currency" : "USD", - "price" : 6.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 6.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 6.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 6.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 6.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 6.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 1, - "upToPeriodsType" : "Billing_Periods", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Specific_Weeks", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : 6, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - } ], - "productFeatures" : [ ] - }, { - "id" : "2c92a0fb4edd70c8014edeaa4ddb21e7", - "sku" : "ABC-00000005", - "name" : "Digital Pack", - "description" : "The Guardian & Observer Digital Pack gives you 7-day access to the Guardian & Observer daily edition for iPad, Android tablet and Kindle Fire as well as premium tier access to the iOS and Android live news apps.", - "category" : null, - "effectiveStartDate" : "2013-02-16", - "effectiveEndDate" : "2099-02-03", - "productNumber" : null, - "allowFeatureChanges" : false, - "ProductEnabled__c" : "True", - "Entitlements__c" : null, - "AcquisitionProfile__c" : "Paid", - "ProductType__c" : "Digital Pack", - "ProductLevel__c" : null, - "Tier__c" : null, - "productRatePlans" : [ { - "id" : "2c92a0ff73add07f0173b99f14390afc", - "status" : "Active", - "name" : "Digital Subscription Three Month Fixed - Deprecated", - "description" : "", - "effectiveStartDate" : "2020-08-01", - "effectiveEndDate" : "2099-01-01", - "TermType__c" : null, - "FrontendId__c" : "Three Month", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A102", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0ff73add07f0173b9a80a584466", - "name" : "Digital Subscription Three Month Fixed", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD60", "NZD63", "EUR45", "GBP36", "CAD63", "AUD63" ], - "pricing" : [ { - "currency" : "USD", - "price" : 60.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 63.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 45.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 36.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 63.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 63.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Quarter", - "billingPeriodAlignment" : "AlignToTermStart", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Digital Pack Global Tax", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1070", - "ProductType__c" : "Digital Pack", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Digital Subscription Gift Rule", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Digital Pack", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Digital Pack", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fb4edd70c8014edeaa4eae220a", - "status" : "Active", - "name" : "Digital Pack Monthly", - "description" : "", - "effectiveStartDate" : "2013-03-11", - "effectiveEndDate" : "2099-01-12", - "TermType__c" : null, - "FrontendId__c" : "Monthly", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A101", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fb4edd70c9014edeaa50342192", - "name" : "Digital Pack Monthly", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD19.99", "NZD23.5", "EUR14.99", "GBP11.99", "CAD21.95", "AUD21.5" ], - "pricing" : [ { - "currency" : "USD", - "price" : 19.990000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 23.500000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 14.990000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 11.990000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 21.950000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 21.500000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Digital Pack Global Tax", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1070", - "ProductType__c" : "Digital Pack", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Digital Pack", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Digital Pack", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fb4edd70c8014edeaa4e972204", - "status" : "Active", - "name" : "Digital Pack Annual", - "description" : "", - "effectiveStartDate" : "2013-03-11", - "effectiveEndDate" : "2099-01-12", - "TermType__c" : null, - "FrontendId__c" : "Yearly", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A104", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fb4edd70c9014edeaa5001218c", - "name" : "Digital Pack Annual", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD199", "NZD235", "EUR149", "GBP119", "CAD219", "AUD215" ], - "pricing" : [ { - "currency" : "USD", - "price" : 199.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 235.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 149.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 119.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 219.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 215.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Annual", - "billingPeriodAlignment" : "AlignToTermStart", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : true, - "taxCode" : "Digital Pack Global Tax", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1070", - "ProductType__c" : "Digital Pack", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Digital Pack", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Digital Pack", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fb4edd70c8014edeaa4e8521fe", - "status" : "Active", - "name" : "Digital Pack Quarterly", - "description" : "", - "effectiveStartDate" : "2013-03-11", - "effectiveEndDate" : "2099-01-12", - "TermType__c" : null, - "FrontendId__c" : "Quarterly", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A102", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fb4edd70c9014edeaa4fd42186", - "name" : "Digital Pack Quarterly", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD59.95", "NZD70.5", "EUR44.95", "GBP35.95", "CAD65.85", "AUD64.5" ], - "pricing" : [ { - "currency" : "USD", - "price" : 59.950000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 70.500000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 44.950000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 35.950000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 65.850000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 64.500000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Quarter", - "billingPeriodAlignment" : "AlignToTermStart", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Digital Pack Global Tax", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1070", - "ProductType__c" : "Digital Pack", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Digital Pack", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Digital Pack", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a00d779932ef0177a65430d30ac1", - "status" : "Active", - "name" : "Digital Subscription Three Month Fixed - One Time Charge", - "description" : "", - "effectiveStartDate" : "2020-08-01", - "effectiveEndDate" : "2099-01-01", - "TermType__c" : null, - "FrontendId__c" : "Three Month", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A106", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a00f779933030177a65881490325", - "name" : "Digital Subscription Three Month Fixed - One Time Charge", - "type" : "OneTime", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD60", "NZD63", "EUR45", "GBP36", "CAD63", "AUD63" ], - "pricing" : [ { - "currency" : "USD", - "price" : 60.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 63.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 45.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 36.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 63.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 63.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "One_Time", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : null, - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : null, - "billingPeriodAlignment" : null, - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : null, - "taxable" : true, - "taxCode" : "Digital Pack Global Tax", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1070", - "ProductType__c" : "Digital Pack", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Digital Subscription Gift Rule", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Digital Pack", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Digital Pack", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a00d71c96bac0171df3a5622740f", - "status" : "Active", - "name" : "Corporate Digital Subscription", - "description" : "", - "effectiveStartDate" : "2020-01-01", - "effectiveEndDate" : "2050-01-01", - "TermType__c" : "TERMED", - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A100", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a00871c96ba30171df3b481931a0", - "name" : "Corporate Digital Subscription", - "type" : "OneTime", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD0", "NZD0", "EUR0", "GBP0", "CAD0", "AUD0" ], - "pricing" : [ { - "currency" : "USD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "One_Time", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : null, - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : null, - "billingPeriodAlignment" : null, - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : null, - "taxable" : false, - "taxCode" : "", - "taxMode" : null, - "ProductCode__c" : "P1070", - "ProductType__c" : "Digital Pack", - "triggerEvent" : "ContractEffective", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize upon invoicing", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Digital Pack", - "deferredRevenueAccountingCodeType" : "SalesRevenue", - "recognizedRevenueAccountingCode" : "Digital Pack", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a00c77992ba70177a6596f710265", - "status" : "Active", - "name" : "Digital Subscription One Year Fixed - One Time Charge", - "description" : "", - "effectiveStartDate" : "2020-08-01", - "effectiveEndDate" : "2099-01-01", - "TermType__c" : null, - "FrontendId__c" : "One Year", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A108", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a011779932fd0177a670f43102aa", - "name" : "Digital Subscription One Year Fixed - One Time Charge", - "type" : "OneTime", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD165", "NZD175", "EUR125", "GBP99", "CAD175", "AUD175" ], - "pricing" : [ { - "currency" : "USD", - "price" : 165.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 175.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 125.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 99.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 175.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 175.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "One_Time", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : null, - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : null, - "billingPeriodAlignment" : null, - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : null, - "taxable" : true, - "taxCode" : "Digital Pack Global Tax", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1070", - "ProductType__c" : "Digital Pack", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Digital Subscription Gift Rule", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Digital Pack", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Digital Pack", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a00773adc09d0173b99e4ded7f45", - "status" : "Active", - "name" : "Digital Subscription One Year Fixed - Deprecated", - "description" : "", - "effectiveStartDate" : "2020-08-01", - "effectiveEndDate" : "2099-01-01", - "TermType__c" : null, - "FrontendId__c" : "One Year", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A104", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a00d73add0220173b9a387c62aec", - "name" : "Digital Subscription One Year Fixed", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD165", "NZD175", "EUR125", "GBP99", "CAD175", "AUD175" ], - "pricing" : [ { - "currency" : "USD", - "price" : 165.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 175.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 125.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 99.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 175.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 175.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Annual", - "billingPeriodAlignment" : "AlignToTermStart", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Digital Pack Global Tax", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1070", - "ProductType__c" : "Digital Pack", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Digital Subscription Gift Rule", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Digital Pack", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Digital Pack", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - } ], - "productFeatures" : [ ] - }, { - "id" : "2c92a00870ec598001710740c3d92eab", - "sku" : "ABC-00000031", - "name" : "Newspaper Digital Voucher", - "description" : "Newspaper Digital Voucher", - "category" : null, - "effectiveStartDate" : "2007-01-01", - "effectiveEndDate" : "2099-07-12", - "productNumber" : null, - "allowFeatureChanges" : false, - "ProductEnabled__c" : "True", - "Entitlements__c" : null, - "AcquisitionProfile__c" : "Paid", - "ProductType__c" : "Newspaper - Digital Voucher", - "ProductLevel__c" : null, - "Tier__c" : null, - "productRatePlans" : [ { - "id" : "2c92a00870ec598001710740d3d03035", - "status" : "Active", - "name" : "Everyday+", - "description" : "Guardian and Observer papers, plus The Guardian Daily and premium access to the Guardian Live app.", - "effectiveStartDate" : "2007-01-01", - "effectiveEndDate" : "2099-07-12", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : "34", - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A109", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a00870ec598001710740d4143037", - "name" : "Digipack", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP2" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 2.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "EVERYDAY+ Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1299", - "ProductType__c" : "Digital Pack", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740d4b8304f", - "name" : "Saturday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP10.95" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 10.950000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "EVERYDAY+ Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1222", - "ProductType__c" : "Print Saturday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher SAT", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher SAT", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740d54f3069", - "name" : "Tuesday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP7.82" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 7.820000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "EVERYDAY+ Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1212", - "ProductType__c" : "Print Tuesday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher M-F", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher M-F", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740d5fd3073", - "name" : "Monday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP7.82" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 7.820000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "EVERYDAY+ Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1212", - "ProductType__c" : "Print Monday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher M-F", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher M-F", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740d691307c", - "name" : "Thursday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP7.82" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 7.820000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "EVERYDAY+ Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1212", - "ProductType__c" : "Print Thursday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher M-F", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher M-F", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740d7493084", - "name" : "Wednesday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP7.82" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 7.820000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "EVERYDAY+ Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1212", - "ProductType__c" : "Print Wednesday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher M-F", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher M-F", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740d7e2308d", - "name" : "Sunday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP10.94" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 10.940000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "EVERYDAY+ Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1232", - "ProductType__c" : "Print Sunday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher SUN", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher SUN", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740d8873096", - "name" : "Friday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP7.82" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 7.820000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "EVERYDAY+ Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1212", - "ProductType__c" : "Print Friday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher M-F", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher M-F", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a00870ec598001710740ca532f69", - "status" : "Active", - "name" : "Sixday", - "description" : "Guardian papers", - "effectiveStartDate" : "2007-01-01", - "effectiveEndDate" : "2099-07-12", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : "30", - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A115", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a00870ec598001710740cc9b2f88", - "name" : "Thursday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP8.44" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 8.440000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Newspaper Digital Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1212", - "ProductType__c" : "Print Thursday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher M-F", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher M-F", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740cd012f90", - "name" : "Wednesday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP8.44" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 8.440000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Newspaper Digital Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1212", - "ProductType__c" : "Print Wednesday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher M-F", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher M-F", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740cd6e2fa2", - "name" : "Saturday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP11.79" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 11.790000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Newspaper Digital Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1222", - "ProductType__c" : "Print Saturday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher SAT", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher SAT", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740cb4e2f6b", - "name" : "Friday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP8.44" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 8.440000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Newspaper Digital Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1212", - "ProductType__c" : "Print Friday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher M-F", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher M-F", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740cbb32f77", - "name" : "Monday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP8.44" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 8.440000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Newspaper Digital Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1212", - "ProductType__c" : "Print Monday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher M-F", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher M-F", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740cc2c2f80", - "name" : "Tuesday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP8.44" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 8.440000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Newspaper Digital Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1212", - "ProductType__c" : "Print Tuesday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher M-F", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher M-F", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a00870ec598001710740c78d2f13", - "status" : "Active", - "name" : "Everyday", - "description" : "Guardian and Observer papers", - "effectiveStartDate" : "2007-01-01", - "effectiveEndDate" : "2099-07-12", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : "34", - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A114", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a00870ec598001710740c8c42f40", - "name" : "Thursday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP7.82" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 7.820000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Newspaper Digital Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1212", - "ProductType__c" : "Print Thursday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher M-F", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher M-F", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740c91d2f4d", - "name" : "Friday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP7.82" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 7.820000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Newspaper Digital Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1212", - "ProductType__c" : "Print Friday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher M-F", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher M-F", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740c7b82f1c", - "name" : "Monday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP7.82" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 7.820000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Newspaper Digital Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1212", - "ProductType__c" : "Print Monday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher M-F", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher M-F", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740c80f2f26", - "name" : "Tuesday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP7.82" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 7.820000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Newspaper Digital Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1212", - "ProductType__c" : "Print Tuesday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher M-F", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher M-F", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740c8652f37", - "name" : "Saturday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP10.95" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 10.950000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Newspaper Digital Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1222", - "ProductType__c" : "Print Saturday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher SAT", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher SAT", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740c9802f59", - "name" : "Wednesday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP7.82" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 7.820000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Newspaper Digital Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1212", - "ProductType__c" : "Print Wednesday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher M-F", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher M-F", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740c9d72f61", - "name" : "Sunday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP10.94" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 10.940000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Newspaper Digital Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1232", - "ProductType__c" : "Print Sunday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher SUN", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher SUN", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a00870ec598001710740d24b3022", - "status" : "Active", - "name" : "Weekend", - "description" : "Saturday Guardian and Observer papers", - "effectiveStartDate" : "2007-01-01", - "effectiveEndDate" : "2099-07-12", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : "24", - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A119", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a00870ec598001710740d28e3024", - "name" : "Saturday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP12.5" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 12.500000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Newspaper Digital Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1222", - "ProductType__c" : "Print Saturday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher SAT", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher SAT", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740d325302c", - "name" : "Sunday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP12.49" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 12.490000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Newspaper Digital Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1232", - "ProductType__c" : "Print Sunday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher SUN", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher SUN", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a00870ec598001710740c4582ead", - "status" : "Active", - "name" : "Sixday+", - "description" : "Guardian papers, plus The Guardian Daily and premium access to the Guardian Live app.", - "effectiveStartDate" : "2007-01-01", - "effectiveEndDate" : "2099-07-12", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : "31", - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A110", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a00870ec598001710740c48e2eaf", - "name" : "Thursday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP8.44" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 8.440000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "SIXDAY+ Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1212", - "ProductType__c" : "Print Thursday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher M-F", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher M-F", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740c4dc2eb7", - "name" : "Wednesday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP8.44" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 8.440000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "SIXDAY+ Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1212", - "ProductType__c" : "Print Wednesday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher M-F", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher M-F", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740c5192ebf", - "name" : "Friday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP8.44" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 8.440000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "SIXDAY+ Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1212", - "ProductType__c" : "Print Friday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher M-F", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher M-F", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740c55a2ec7", - "name" : "Saturday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP11.79" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 11.790000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "SIXDAY+ Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1222", - "ProductType__c" : "Print Saturday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher SAT", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher SAT", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740c5962ecf", - "name" : "Monday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP8.44" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 8.440000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "SIXDAY+ Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1212", - "ProductType__c" : "Print Monday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher M-F", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher M-F", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740c5cf2ed7", - "name" : "Digipack", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP2" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 2.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "SIXDAY+ Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1299", - "ProductType__c" : "Digital Pack", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740c60f2edf", - "name" : "Tuesday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP8.44" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 8.440000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "SIXDAY+ Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1212", - "ProductType__c" : "Print Tuesday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher M-F", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher M-F", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a00870ec598001710740d0d83017", - "status" : "Active", - "name" : "Sunday", - "description" : "Observer paper", - "effectiveStartDate" : "2017-03-27", - "effectiveEndDate" : "2099-07-12", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : "15", - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A118", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a00870ec598001710740d1103019", - "name" : "Sunday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP13.99" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 13.990000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Newspaper Digital Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1232", - "ProductType__c" : "Print Sunday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher SUN", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher SUN", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a00870ec598001710740cf9e3004", - "status" : "Active", - "name" : "Sunday+", - "description" : "Observer paper, plus The Guardian Daily and premium access to the Guardian Live app.", - "effectiveStartDate" : "2007-01-01", - "effectiveEndDate" : "2099-07-12", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : "11", - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A112", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a00870ec598001710740cfda3006", - "name" : "Digipack", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP10" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 10.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "SUNDAY+ Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1299", - "ProductType__c" : "Digital Pack", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740d053300f", - "name" : "Sunday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP13.99" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 13.990000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "SUNDAY+ Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1232", - "ProductType__c" : "Print Sunday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher SUN", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher SUN", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a00870ec598001710740c6672ee7", - "status" : "Active", - "name" : "Weekend+", - "description" : "Saturday Guardian and Observer papers, plus The Guardian Daily and premium access to the Guardian Live app.", - "effectiveStartDate" : "2007-01-01", - "effectiveEndDate" : "2099-07-12", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : "19", - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A113", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a00870ec598001710740c6872ee9", - "name" : "Saturday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP12.5" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 12.500000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "WEEKEND+ Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1222", - "ProductType__c" : "Print Saturday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher SAT", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher SAT", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740c6ce2ef1", - "name" : "Digipack", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP9" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 9.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "WEEKEND+ Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1299", - "ProductType__c" : "Digital Pack", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740c7132efe", - "name" : "Sunday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP12.49" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 12.490000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "WEEKEND+ Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1232", - "ProductType__c" : "Print Sunday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher SUN", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher SUN", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a00870ec598001710740cdd02fbd", - "status" : "Active", - "name" : "Saturday", - "description" : "Saturday paper", - "effectiveStartDate" : "2018-03-14", - "effectiveEndDate" : "2099-07-12", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : "15", - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A117", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a00870ec598001710740ce042fcb", - "name" : "Saturday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP13.99" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 13.990000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Newspaper Digital Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1222", - "ProductType__c" : "Print Saturday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher SAT", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher SAT", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a00870ec598001710740ce702ff0", - "status" : "Active", - "name" : "Saturday+", - "description" : "Saturday paper, plus The Guardian Daily and premium access to the Guardian Live app.", - "effectiveStartDate" : "2018-03-14", - "effectiveEndDate" : "2099-07-12", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : "11", - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A111", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a00870ec598001710740cf1e2ffc", - "name" : "Saturday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP13.99" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 13.990000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "SATURDAY+ Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1222", - "ProductType__c" : "Print Saturday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher SAT", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher SAT", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740cea02ff4", - "name" : "Digipack", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP10" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 10.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "SATURDAY+ Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1299", - "ProductType__c" : "Digital Pack", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - } ], - "productFeatures" : [ ] - }, { - "id" : "2c92a0fe5aacfabe015ad24bf6e15ff6", - "sku" : "ABC-00000028", - "name" : "Contributor", - "description" : "", - "category" : null, - "effectiveStartDate" : "2017-03-15", - "effectiveEndDate" : "2099-03-15", - "productNumber" : null, - "allowFeatureChanges" : false, - "ProductEnabled__c" : "True", - "Entitlements__c" : null, - "AcquisitionProfile__c" : "Paid", - "ProductType__c" : "Contribution", - "ProductLevel__c" : null, - "Tier__c" : null, - "productRatePlans" : [ { - "id" : "2c92a0fc5e1dc084015e37f58c200eea", - "status" : "Active", - "name" : "Annual Contribution", - "description" : "", - "effectiveStartDate" : "2017-03-15", - "effectiveEndDate" : "2099-03-15", - "TermType__c" : "TERMED", - "FrontendId__c" : "Annual", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A104", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fc5e1dc084015e37f58c7b0f34", - "name" : "Annual Contribution", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD60", "NZD60", "EUR60", "GBP60", "CAD5", "AUD100" ], - "pricing" : [ { - "currency" : "USD", - "price" : 60.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 60.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 60.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 60.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 5.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 100.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Annual", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : true, - "taxCode" : "Contribution", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1010", - "ProductType__c" : "Contributor", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize upon invoicing", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Contribution", - "deferredRevenueAccountingCodeType" : "SalesRevenue", - "recognizedRevenueAccountingCode" : "Contribution", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fc5aacfadd015ad24db4ff5e97", - "status" : "Active", - "name" : "Monthly Contribution", - "description" : "", - "effectiveStartDate" : "2017-03-15", - "effectiveEndDate" : "2099-03-15", - "TermType__c" : "TERMED", - "FrontendId__c" : "Monthly", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A101", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fc5aacfadd015ad250bf2c6d38", - "name" : "Monthly Contribution", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD5", "NZD5", "EUR5", "GBP5", "CAD5", "AUD10" ], - "pricing" : [ { - "currency" : "USD", - "price" : 5.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 5.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 5.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 5.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 5.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 10.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : true, - "taxCode" : "Contribution", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1010", - "ProductType__c" : "Contributor", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize upon invoicing", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Contribution", - "deferredRevenueAccountingCodeType" : "SalesRevenue", - "recognizedRevenueAccountingCode" : "Contribution", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - } ], - "productFeatures" : [ ] - }, { - "id" : "2c92a0fd57d0a9870157d73fa27c3de1", - "sku" : "ABC-00000017", - "name" : "Guardian Weekly Zone A", - "description" : "", - "category" : null, - "effectiveStartDate" : "1990-10-18", - "effectiveEndDate" : "2099-10-18", - "productNumber" : null, - "allowFeatureChanges" : false, - "ProductEnabled__c" : "True", - "Entitlements__c" : null, - "AcquisitionProfile__c" : "Paid", - "ProductType__c" : "Guardian Weekly", - "ProductLevel__c" : null, - "Tier__c" : null, - "productRatePlans" : [ { - "id" : "2c92a0ff5a6b5d77015a7fb38d201688", - "status" : "Active", - "name" : "Guardian Weekly 10% Discount", - "description" : "", - "effectiveStartDate" : "1991-01-01", - "effectiveEndDate" : "2099-01-01", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : null, - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A104", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0ff5a6b5d77015a7fb548381f4e", - "name" : "10% Discount", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "10% discount" ], - "pricing" : [ { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 10.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Annual", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : null, - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0ff5a5adca7015a5c51a69c7f2e", - "status" : "Active", - "name" : "Guardian Weekly 3 Years", - "description" : "", - "effectiveStartDate" : "1995-12-12", - "effectiveEndDate" : "2099-10-18", - "TermType__c" : "ONETERM", - "FrontendId__c" : "ThreeYears", - "Saving__c" : null, - "DefaultTerm__c" : "36", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A104", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0ff5a5adca7015a5c51a6ad7f30", - "name" : "Zone A 3 Years", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD720", "GBP360" ], - "pricing" : [ { - "currency" : "USD", - "price" : 720.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 360.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 1, - "upToPeriodsType" : "Billing_Periods", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Three_Years", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0ff5a5adca7015a5c4af5963efa", - "status" : "Active", - "name" : "Guardian Weekly 6 Months", - "description" : "", - "effectiveStartDate" : "1995-10-18", - "effectiveEndDate" : "2099-10-18", - "TermType__c" : null, - "FrontendId__c" : "SixMonths", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A103", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0ff5a5adca7015a5c4af5b63f01", - "name" : "Zone A 6 Months", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD120", "GBP60" ], - "pricing" : [ { - "currency" : "USD", - "price" : 120.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 60.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Semi_Annual", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0ff5a4b85e7015a4cf95d352a07", - "status" : "Active", - "name" : "Guardian Weekly 12 Issues", - "description" : "12 issues", - "effectiveStartDate" : "1995-11-13", - "effectiveEndDate" : "2099-02-14", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A102", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0ff5a4b85e7015a4cf95d472a09", - "name" : "Zone A 12 Issues", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD12", "GBP12" ], - "pricing" : [ { - "currency" : "USD", - "price" : 12.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 12.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 1, - "upToPeriodsType" : "Billing_Periods", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Specific_Weeks", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : 12, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "ContractEffective", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0ff59d9d540015a41a40b3e07d3", - "status" : "Active", - "name" : "Guardian Weekly 6 Issues", - "description" : "", - "effectiveStartDate" : "1995-02-13", - "effectiveEndDate" : "2099-02-14", - "TermType__c" : null, - "FrontendId__c" : "SixWeeks", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A101", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fe5a241e5a015a41f1c4b102c3", - "name" : "Zone A 6 Issues", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD6", "GBP6" ], - "pricing" : [ { - "currency" : "USD", - "price" : 6.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 6.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 1, - "upToPeriodsType" : "Billing_Periods", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Specific_Weeks", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : 6, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "ContractEffective", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0ff58bdf4eb0158f2ecc89c1034", - "status" : "Active", - "name" : "Guardian Weekly 1 Year", - "description" : "", - "effectiveStartDate" : "1995-12-12", - "effectiveEndDate" : "2099-10-18", - "TermType__c" : "ONETERM", - "FrontendId__c" : "OneYear", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A104", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0ff58bdf4eb0158f2ecc8ae1036", - "name" : "Zone A 1 Year", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD240", "GBP120" ], - "pricing" : [ { - "currency" : "USD", - "price" : 240.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 120.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 1, - "upToPeriodsType" : "Billing_Periods", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Annual", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0ff57d0a0b60157d741e722439a", - "status" : "Active", - "name" : "Guardian Weekly Annual", - "description" : "", - "effectiveStartDate" : "1995-10-18", - "effectiveEndDate" : "2099-10-18", - "TermType__c" : null, - "FrontendId__c" : "Yearly", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A104", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fd57d0a9870157d7510cfd66f0", - "name" : "Zone A Annual", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD240", "GBP120" ], - "pricing" : [ { - "currency" : "USD", - "price" : 240.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 120.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Annual", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fe5a6b4e98015a7fb648541d78", - "status" : "Active", - "name" : "Guardian Weekly 30% Discount", - "description" : "", - "effectiveStartDate" : "1991-01-01", - "effectiveEndDate" : "2099-01-01", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : null, - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A104", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fe5a6b4e98015a7fb648631d7a", - "name" : "30% Discount", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "30% discount" ], - "pricing" : [ { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 30.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Annual", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : null, - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fe5a6b4e98015a7fb59d9407a6", - "status" : "Active", - "name" : "Guardian Weekly 25% Discount", - "description" : "", - "effectiveStartDate" : "1991-01-01", - "effectiveEndDate" : "2099-01-01", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : null, - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A104", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fe5a6b4e98015a7fb59db107a8", - "name" : "25% Discount", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "25% discount" ], - "pricing" : [ { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 25.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Annual", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : null, - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fe5a5ad349015a5c4e3f87184c", - "status" : "Active", - "name" : "Guardian Weekly 6 Months Only", - "description" : "", - "effectiveStartDate" : "1995-12-12", - "effectiveEndDate" : "2099-10-18", - "TermType__c" : "ONETERM", - "FrontendId__c" : "SixMonthsOnly", - "Saving__c" : null, - "DefaultTerm__c" : "6", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A103", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fe5a5ad349015a5c4e3f99184f", - "name" : "Zone A 6 Months", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD120", "GBP60" ], - "pricing" : [ { - "currency" : "USD", - "price" : 120.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 60.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 6, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Semi_Annual", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fe5a5ad343015a5c50b4eb2d72", - "status" : "Active", - "name" : "Guardian Weekly 2 Years", - "description" : "", - "effectiveStartDate" : "1995-12-12", - "effectiveEndDate" : "2099-10-18", - "TermType__c" : "ONETERM", - "FrontendId__c" : "TwoYears", - "Saving__c" : null, - "DefaultTerm__c" : "24", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A104", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fe5a5ad343015a5c50b4fc2d74", - "name" : "Zone A 2 Years", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD480", "GBP240" ], - "pricing" : [ { - "currency" : "USD", - "price" : 480.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 240.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 1, - "upToPeriodsType" : "Billing_Periods", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Two_Years", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fd57d0a9870157d7412f19424f", - "status" : "Active", - "name" : "Guardian Weekly Quarterly", - "description" : "", - "effectiveStartDate" : "1995-10-18", - "effectiveEndDate" : "2099-10-18", - "TermType__c" : null, - "FrontendId__c" : "Quarterly", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A102", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0ff57d0a0b50157d752a0077624", - "name" : "Zone A Quarterly", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD60", "GBP30" ], - "pricing" : [ { - "currency" : "USD", - "price" : 60.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 30.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Quarter", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - } ], - "productFeatures" : [ ] - }, { - "id" : "2c92a0fe57d0a0c40157d74240d35541", - "sku" : "ABC-00000019", - "name" : "Guardian Weekly Zone B", - "description" : "", - "category" : null, - "effectiveStartDate" : "1996-01-01", - "effectiveEndDate" : "2099-10-18", - "productNumber" : null, - "allowFeatureChanges" : false, - "ProductEnabled__c" : "True", - "Entitlements__c" : null, - "AcquisitionProfile__c" : "Paid", - "ProductType__c" : "Guardian Weekly", - "ProductLevel__c" : null, - "Tier__c" : null, - "productRatePlans" : [ { - "id" : "2c92a0fe5a6b4e98015a8026d9d30b32", - "status" : "Active", - "name" : "Guardian Weekly 10% Discount", - "description" : "", - "effectiveStartDate" : "1996-10-18", - "effectiveEndDate" : "2099-10-18", - "TermType__c" : "TERMED", - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A104", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fe5a6b4e98015a8026d9e70b34", - "name" : "10% Discount", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "0% discount", "0% discount", "0% discount", "10% discount", "0% discount", "0% discount" ], - "pricing" : [ { - "currency" : "USD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 10.000000000, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Annual", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : null, - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0ff5a6b5d77015a80298bfa6e7c", - "status" : "Active", - "name" : "Guardian Weekly 30% Discount", - "description" : "", - "effectiveStartDate" : "1996-10-18", - "effectiveEndDate" : "2099-10-18", - "TermType__c" : "TERMED", - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A104", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0ff5a6b5d77015a80298c0d6e7f", - "name" : "30% Discount", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "0% discount", "0% discount", "0% discount", "30% discount", "0% discount", "0% discount" ], - "pricing" : [ { - "currency" : "USD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 30.000000000, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Annual", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : null, - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0ff5a6b5d74015a8028b15f4db4", - "status" : "Active", - "name" : "Guardian Weekly 25% Discount", - "description" : "", - "effectiveStartDate" : "1996-10-18", - "effectiveEndDate" : "2099-10-18", - "TermType__c" : "TERMED", - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A104", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0ff5a6b5d74015a8028b16f4db6", - "name" : "25% Discount", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "0% discount", "0% discount", "0% discount", "25% discount", "0% discount", "0% discount" ], - "pricing" : [ { - "currency" : "USD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 25.000000000, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Annual", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : null, - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0ff5a5adca9015a611f77db4431", - "status" : "Active", - "name" : "Guardian Weekly 3 Years", - "description" : "", - "effectiveStartDate" : "1996-10-18", - "effectiveEndDate" : "2099-10-18", - "TermType__c" : "ONETERM", - "FrontendId__c" : "ThreeYears", - "Saving__c" : null, - "DefaultTerm__c" : "36", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A104", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0ff5a5adca9015a611f77eb4436", - "name" : "Zone B 3 Years", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD720", "NZD1176", "EUR588", "GBP456", "CAD720", "AUD936" ], - "pricing" : [ { - "currency" : "USD", - "price" : 720.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 1176.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 588.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 456.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 720.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 936.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 1, - "upToPeriodsType" : "Billing_Periods", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Three_Years", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0ff5a5adca7015a611d44e01395", - "status" : "Active", - "name" : "Guardian Weekly 2 Years", - "description" : "", - "effectiveStartDate" : "1996-10-18", - "effectiveEndDate" : "2099-10-18", - "TermType__c" : "ONETERM", - "FrontendId__c" : "TwoYears", - "Saving__c" : null, - "DefaultTerm__c" : "24", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A104", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0ff5a5adca7015a611d44f21397", - "name" : "Zone B 2 Years", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD480", "NZD784", "EUR392", "GBP304", "CAD480", "AUD624" ], - "pricing" : [ { - "currency" : "USD", - "price" : 480.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 784.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 392.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 304.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 480.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 624.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 1, - "upToPeriodsType" : "Billing_Periods", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Two_Years", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fe5a5ad349015a5c61d6e05d8d", - "status" : "Active", - "name" : "Guardian Weekly 6 Months Only", - "description" : "", - "effectiveStartDate" : "1996-10-18", - "effectiveEndDate" : "2099-10-18", - "TermType__c" : "ONETERM", - "FrontendId__c" : "SixMonthsOnly", - "Saving__c" : null, - "DefaultTerm__c" : "6", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A103", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fe5a5ad349015a5c61d6f05d94", - "name" : "Zone B 6 Months", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD120", "NZD196", "EUR98", "GBP76", "CAD120", "AUD156" ], - "pricing" : [ { - "currency" : "USD", - "price" : 120.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 196.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 98.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 76.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 120.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 156.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 6, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Semi_Annual", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fe5a5ad344015a5c67b1144250", - "status" : "Active", - "name" : "Guardian Weekly 6 Issues", - "description" : "", - "effectiveStartDate" : "1996-10-18", - "effectiveEndDate" : "2099-10-18", - "TermType__c" : "ONETERM", - "FrontendId__c" : "SixWeeks", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A101", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fe5a5ad344015a5c67b1234254", - "name" : "Zone B 6 Issues", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD6", "NZD6", "EUR6", "GBP6", "CAD6", "AUD6" ], - "pricing" : [ { - "currency" : "USD", - "price" : 6.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 6.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 6.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 6.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 6.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 6.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 1, - "upToPeriodsType" : "Billing_Periods", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Specific_Weeks", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : 6, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "ContractEffective", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fe57d0a0c40157d74241005544", - "status" : "Active", - "name" : "Guardian Weekly Quarterly", - "description" : "", - "effectiveStartDate" : "1996-01-01", - "effectiveEndDate" : "2099-10-18", - "TermType__c" : "TERMED", - "FrontendId__c" : "Quarterly", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A102", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fd57d0a9230157d75a5e377221", - "name" : "Zone B Quarterly", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD60", "NZD98", "EUR49", "GBP38", "CAD60", "AUD78" ], - "pricing" : [ { - "currency" : "USD", - "price" : 60.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 98.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 49.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 38.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 60.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 78.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Quarter", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fe57d0a0c40157d74240de5543", - "status" : "Active", - "name" : "Guardian Weekly Annual", - "description" : "", - "effectiveStartDate" : "1996-10-18", - "effectiveEndDate" : "2099-10-18", - "TermType__c" : "TERMED", - "FrontendId__c" : "Yearly", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A104", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0ff57d0a0b50157d759315607c5", - "name" : "Zone B Annual", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD240", "NZD392", "EUR196", "GBP152", "CAD240", "AUD312" ], - "pricing" : [ { - "currency" : "USD", - "price" : 240.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 392.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 196.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 152.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 240.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 312.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Annual", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fd5a5adc8b015a5c690d0d1ec6", - "status" : "Active", - "name" : "Guardian Weekly 12 Issues", - "description" : "", - "effectiveStartDate" : "1996-10-18", - "effectiveEndDate" : "2099-10-18", - "TermType__c" : "ONETERM", - "FrontendId__c" : "TwelveWeeks", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A102", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fd5a5adc8b015a5c690d261ec8", - "name" : "Zone B 12 Issues", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD12", "NZD12", "EUR12", "GBP12", "CAD12", "AUD12" ], - "pricing" : [ { - "currency" : "USD", - "price" : 12.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 12.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 12.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 12.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 12.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 12.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 1, - "upToPeriodsType" : "Billing_Periods", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Specific_Weeks", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : 12, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "ContractEffective", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fd5a5adc8b015a5c65074b7c41", - "status" : "Active", - "name" : "Guardian Weekly 6 Months", - "description" : "", - "effectiveStartDate" : "1996-10-18", - "effectiveEndDate" : "2099-10-18", - "TermType__c" : "TERMED", - "FrontendId__c" : "SixMonths", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A103", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fd5a5adc8b015a5c65075e7c43", - "name" : "Zone B 6 Months", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD120", "NZD196", "EUR98", "GBP76", "CAD120", "AUD156" ], - "pricing" : [ { - "currency" : "USD", - "price" : 120.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 196.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 98.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 76.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 120.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 156.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Semi_Annual", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fd58cf57000158f30ae6d06f2a", - "status" : "Active", - "name" : "Guardian Weekly 1 Year", - "description" : "", - "effectiveStartDate" : "1996-01-01", - "effectiveEndDate" : "2099-10-18", - "TermType__c" : "ONETERM", - "FrontendId__c" : "OneYear", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A104", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fd58cf57000158f30ae6e26f2c", - "name" : "Zone B 1 Year", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD240", "NZD392", "EUR196", "GBP152", "CAD240", "AUD312" ], - "pricing" : [ { - "currency" : "USD", - "price" : 240.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 392.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 196.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 152.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 240.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 312.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 1, - "upToPeriodsType" : "Billing_Periods", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Annual", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - } ], - "productFeatures" : [ ] - } ], - "nextPage" : "/v1/catalog/products?page=2&pageSize=10", - "success" : true -} \ No newline at end of file diff --git a/lambda/src/test/resources/Migrations/SupporterPlus2023V1V2/monthly-standard/invoice-preview.json b/lambda/src/test/resources/Migrations/SupporterPlus2023V1V2/monthly-standard/invoice-preview.json deleted file mode 100644 index d80a0e5a..00000000 --- a/lambda/src/test/resources/Migrations/SupporterPlus2023V1V2/monthly-standard/invoice-preview.json +++ /dev/null @@ -1,245 +0,0 @@ -{ - "accountId" : "ACCOUNT-ID", - "invoiceItems" : [ { - "id" : "cf151f71618e47829ec4d610d21e9b8c", - "subscriptionName" : "SUBSCRIPTION-NUMBER", - "subscriptionId" : "SUBSCRIPTION-ID", - "subscriptionNumber" : "SUBSCRIPTION-NUMBER", - "serviceStartDate" : "2023-08-01", - "serviceEndDate" : "2023-08-31", - "chargeAmount" : 10.000000000, - "chargeDescription" : "", - "chargeName" : "Supporter Plus Monthly Charge", - "chargeNumber" : "C-04240692", - "chargeId" : "8a12827c87374fca01873b21e74367f8", - "productName" : "Supporter Plus", - "quantity" : 1, - "taxAmount" : 0.000000000, - "unitOfMeasure" : "", - "chargeDate" : "2023-07-18 13:18:00", - "chargeType" : "Recurring", - "processingType" : "Charge", - "appliedToItemId" : null - }, { - "id" : "cee7017acc754a5d9062b7461fbf783b", - "subscriptionName" : "SUBSCRIPTION-NUMBER", - "subscriptionId" : "SUBSCRIPTION-ID", - "subscriptionNumber" : "SUBSCRIPTION-NUMBER", - "serviceStartDate" : "2023-09-01", - "serviceEndDate" : "2023-09-30", - "chargeAmount" : 10.000000000, - "chargeDescription" : "", - "chargeName" : "Supporter Plus Monthly Charge", - "chargeNumber" : "C-04240692", - "chargeId" : "8a12827c87374fca01873b21e74367f8", - "productName" : "Supporter Plus", - "quantity" : 1, - "taxAmount" : 0.000000000, - "unitOfMeasure" : "", - "chargeDate" : "2023-07-18 13:18:00", - "chargeType" : "Recurring", - "processingType" : "Charge", - "appliedToItemId" : null - }, { - "id" : "08033a57a5d9440ebd733865cb12d1a5", - "subscriptionName" : "SUBSCRIPTION-NUMBER", - "subscriptionId" : "SUBSCRIPTION-ID", - "subscriptionNumber" : "SUBSCRIPTION-NUMBER", - "serviceStartDate" : "2023-10-01", - "serviceEndDate" : "2023-10-31", - "chargeAmount" : 10.000000000, - "chargeDescription" : "", - "chargeName" : "Supporter Plus Monthly Charge", - "chargeNumber" : "C-04240692", - "chargeId" : "8a12827c87374fca01873b21e74367f8", - "productName" : "Supporter Plus", - "quantity" : 1, - "taxAmount" : 0.000000000, - "unitOfMeasure" : "", - "chargeDate" : "2023-07-18 13:18:00", - "chargeType" : "Recurring", - "processingType" : "Charge", - "appliedToItemId" : null - }, { - "id" : "a8d4b68129ff4d45b0002e20ef0b7aa5", - "subscriptionName" : "SUBSCRIPTION-NUMBER", - "subscriptionId" : "SUBSCRIPTION-ID", - "subscriptionNumber" : "SUBSCRIPTION-NUMBER", - "serviceStartDate" : "2023-11-01", - "serviceEndDate" : "2023-11-30", - "chargeAmount" : 10.000000000, - "chargeDescription" : "", - "chargeName" : "Supporter Plus Monthly Charge", - "chargeNumber" : "C-04240692", - "chargeId" : "8a12827c87374fca01873b21e74367f8", - "productName" : "Supporter Plus", - "quantity" : 1, - "taxAmount" : 0.000000000, - "unitOfMeasure" : "", - "chargeDate" : "2023-07-18 13:18:00", - "chargeType" : "Recurring", - "processingType" : "Charge", - "appliedToItemId" : null - }, { - "id" : "1e47cf56bb844423a39a81851722264c", - "subscriptionName" : "SUBSCRIPTION-NUMBER", - "subscriptionId" : "SUBSCRIPTION-ID", - "subscriptionNumber" : "SUBSCRIPTION-NUMBER", - "serviceStartDate" : "2023-12-01", - "serviceEndDate" : "2023-12-31", - "chargeAmount" : 10.000000000, - "chargeDescription" : "", - "chargeName" : "Supporter Plus Monthly Charge", - "chargeNumber" : "C-04240692", - "chargeId" : "8a12827c87374fca01873b21e74367f8", - "productName" : "Supporter Plus", - "quantity" : 1, - "taxAmount" : 0.000000000, - "unitOfMeasure" : "", - "chargeDate" : "2023-07-18 13:18:00", - "chargeType" : "Recurring", - "processingType" : "Charge", - "appliedToItemId" : null - }, { - "id" : "c047352945c54ad28b806f293cc2e1f3", - "subscriptionName" : "SUBSCRIPTION-NUMBER", - "subscriptionId" : "SUBSCRIPTION-ID", - "subscriptionNumber" : "SUBSCRIPTION-NUMBER", - "serviceStartDate" : "2024-01-01", - "serviceEndDate" : "2024-01-31", - "chargeAmount" : 10.000000000, - "chargeDescription" : "", - "chargeName" : "Supporter Plus Monthly Charge", - "chargeNumber" : "C-04240692", - "chargeId" : "8a12827c87374fca01873b21e74367f8", - "productName" : "Supporter Plus", - "quantity" : 1, - "taxAmount" : 0.000000000, - "unitOfMeasure" : "", - "chargeDate" : "2023-07-18 13:18:00", - "chargeType" : "Recurring", - "processingType" : "Charge", - "appliedToItemId" : null - }, { - "id" : "ff769a61df1040bda3eb902a3378153d", - "subscriptionName" : "SUBSCRIPTION-NUMBER", - "subscriptionId" : "SUBSCRIPTION-ID", - "subscriptionNumber" : "SUBSCRIPTION-NUMBER", - "serviceStartDate" : "2024-02-01", - "serviceEndDate" : "2024-02-29", - "chargeAmount" : 10.000000000, - "chargeDescription" : "", - "chargeName" : "Supporter Plus Monthly Charge", - "chargeNumber" : "C-04240692", - "chargeId" : "8a12827c87374fca01873b21e74367f8", - "productName" : "Supporter Plus", - "quantity" : 1, - "taxAmount" : 0.000000000, - "unitOfMeasure" : "", - "chargeDate" : "2023-07-18 13:18:00", - "chargeType" : "Recurring", - "processingType" : "Charge", - "appliedToItemId" : null - }, { - "id" : "ad73f22439294658ba1ec6ed95659561", - "subscriptionName" : "SUBSCRIPTION-NUMBER", - "subscriptionId" : "SUBSCRIPTION-ID", - "subscriptionNumber" : "SUBSCRIPTION-NUMBER", - "serviceStartDate" : "2024-03-01", - "serviceEndDate" : "2024-03-31", - "chargeAmount" : 10.000000000, - "chargeDescription" : "", - "chargeName" : "Supporter Plus Monthly Charge", - "chargeNumber" : "C-04240692", - "chargeId" : "8a12827c87374fca01873b21e74367f8", - "productName" : "Supporter Plus", - "quantity" : 1, - "taxAmount" : 0.000000000, - "unitOfMeasure" : "", - "chargeDate" : "2023-07-18 13:18:00", - "chargeType" : "Recurring", - "processingType" : "Charge", - "appliedToItemId" : null - }, { - "id" : "d3679dd840e2471cb0d4313774fe7c4b", - "subscriptionName" : "SUBSCRIPTION-NUMBER", - "subscriptionId" : "SUBSCRIPTION-ID", - "subscriptionNumber" : "SUBSCRIPTION-NUMBER", - "serviceStartDate" : "2024-04-01", - "serviceEndDate" : "2024-04-30", - "chargeAmount" : 10.000000000, - "chargeDescription" : "", - "chargeName" : "Supporter Plus Monthly Charge", - "chargeNumber" : "C-04240692", - "chargeId" : "8a12827c87374fca01873b21e74367f8", - "productName" : "Supporter Plus", - "quantity" : 1, - "taxAmount" : 0.000000000, - "unitOfMeasure" : "", - "chargeDate" : "2023-07-18 13:18:00", - "chargeType" : "Recurring", - "processingType" : "Charge", - "appliedToItemId" : null - }, { - "id" : "123298ebb9f648d3b3908df8a1a3152e", - "subscriptionName" : "SUBSCRIPTION-NUMBER", - "subscriptionId" : "SUBSCRIPTION-ID", - "subscriptionNumber" : "SUBSCRIPTION-NUMBER", - "serviceStartDate" : "2024-05-01", - "serviceEndDate" : "2024-05-31", - "chargeAmount" : 10.000000000, - "chargeDescription" : "", - "chargeName" : "Supporter Plus Monthly Charge", - "chargeNumber" : "C-04240692", - "chargeId" : "8a12827c87374fca01873b21e74367f8", - "productName" : "Supporter Plus", - "quantity" : 1, - "taxAmount" : 0.000000000, - "unitOfMeasure" : "", - "chargeDate" : "2023-07-18 13:18:00", - "chargeType" : "Recurring", - "processingType" : "Charge", - "appliedToItemId" : null - }, { - "id" : "7ad419fd2f4c4961933b529efef1ce1c", - "subscriptionName" : "SUBSCRIPTION-NUMBER", - "subscriptionId" : "SUBSCRIPTION-ID", - "subscriptionNumber" : "SUBSCRIPTION-NUMBER", - "serviceStartDate" : "2024-06-01", - "serviceEndDate" : "2024-06-30", - "chargeAmount" : 10.000000000, - "chargeDescription" : "", - "chargeName" : "Supporter Plus Monthly Charge", - "chargeNumber" : "C-04240692", - "chargeId" : "8a12827c87374fca01873b21e74367f8", - "productName" : "Supporter Plus", - "quantity" : 1, - "taxAmount" : 0.000000000, - "unitOfMeasure" : "", - "chargeDate" : "2023-07-18 13:18:00", - "chargeType" : "Recurring", - "processingType" : "Charge", - "appliedToItemId" : null - }, { - "id" : "1514ecaadb1b4c5789b3b9299a71ca4f", - "subscriptionName" : "SUBSCRIPTION-NUMBER", - "subscriptionId" : "SUBSCRIPTION-ID", - "subscriptionNumber" : "SUBSCRIPTION-NUMBER", - "serviceStartDate" : "2024-07-01", - "serviceEndDate" : "2024-07-31", - "chargeAmount" : 10.000000000, - "chargeDescription" : "", - "chargeName" : "Supporter Plus Monthly Charge", - "chargeNumber" : "C-04240692", - "chargeId" : "8a12827c87374fca01873b21e74367f8", - "productName" : "Supporter Plus", - "quantity" : 1, - "taxAmount" : 0.000000000, - "unitOfMeasure" : "", - "chargeDate" : "2023-07-18 13:18:00", - "chargeType" : "Recurring", - "processingType" : "Charge", - "appliedToItemId" : null - } ], - "success" : true -} \ No newline at end of file diff --git a/lambda/src/test/resources/Migrations/SupporterPlus2023V1V2/monthly-standard/subscription.json b/lambda/src/test/resources/Migrations/SupporterPlus2023V1V2/monthly-standard/subscription.json deleted file mode 100644 index 033b61c2..00000000 --- a/lambda/src/test/resources/Migrations/SupporterPlus2023V1V2/monthly-standard/subscription.json +++ /dev/null @@ -1,240 +0,0 @@ -{ - "success" : true, - "id" : "SUBSCRIPTION-ID", - "accountId" : "ACCOUNT-ID", - "accountNumber" : "ACCOUNT-NUMBER", - "accountName" : "0010J00001w3XTWQA2", - "invoiceOwnerAccountId" : "ACCOUNT-ID", - "invoiceOwnerAccountNumber" : "ACCOUNT-NUMBER", - "invoiceOwnerAccountName" : "0010J00001w3XTWQA2", - "subscriptionNumber" : "SUBSCRIPTION-NUMBER", - "version" : 8, - "revision" : "8.0", - "termType" : "TERMED", - "invoiceSeparately" : false, - "contractEffectiveDate" : "2018-07-18", - "serviceActivationDate" : "2018-07-18", - "customerAcceptanceDate" : "2018-07-18", - "subscriptionStartDate" : "2018-07-18", - "subscriptionEndDate" : "2024-07-18", - "lastBookingDate" : "2023-07-18", - "termStartDate" : "2023-07-18", - "termEndDate" : "2024-07-18", - "initialTerm" : 12, - "initialTermPeriodType" : "Month", - "currentTerm" : 12, - "currentTermPeriodType" : "Month", - "autoRenew" : true, - "renewalSetting" : "RENEW_WITH_SPECIFIC_TERM", - "renewalTerm" : 12, - "renewalTermPeriodType" : "Month", - "contractedMrr" : 10.00, - "totalContractedValue" : 720.00, - "notes" : null, - "status" : "Active", - "TrialPeriodPrice__c" : null, - "CanadaHandDelivery__c" : null, - "QuoteNumber__QT" : null, - "GifteeIdentityId__c" : null, - "OpportunityName__QT" : null, - "GiftNotificationEmailDate__c" : null, - "Gift_Subscription__c" : "No", - "TrialPeriodDays__c" : null, - "CreatedRequestId__c" : null, - "AcquisitionSource__c" : null, - "CreatedByCSR__c" : null, - "CASSubscriberID__c" : null, - "LastPriceChangeDate__c" : null, - "InitialPromotionCode__c" : null, - "CpqBundleJsonId__QT" : null, - "RedemptionCode__c" : null, - "QuoteType__QT" : null, - "GiftRedemptionDate__c" : null, - "QuoteBusinessType__QT" : null, - "SupplierCode__c" : null, - "legacy_cat__c" : null, - "AcquisitionCase__c" : null, - "ReaderType__c" : null, - "ActivationDate__c" : null, - "UserCancellationReason__c" : null, - "OpportunityCloseDate__QT" : null, - "IPaddress__c" : null, - "IPCountry__c" : null, - "PromotionCode__c" : null, - "OriginalSubscriptionStartDate__c" : null, - "LegacyContractStartDate__c" : null, - "CancellationReason__c" : null, - "billToContact" : null, - "paymentTerm" : null, - "invoiceTemplateId" : null, - "invoiceTemplateName" : null, - "sequenceSetId" : null, - "sequenceSetName" : null, - "soldToContact" : null, - "isLatestVersion" : true, - "cancelReason" : null, - "ratePlans" : [ { - "id" : "8a129d388962fe000189679374c3429c", - "lastChangeType" : "Remove", - "productId" : "2c92a0fe5aacfabe015ad24bf6e15ff6", - "productName" : "Contributor", - "productSku" : "ABC-00000028", - "productRatePlanId" : "2c92a0fc5aacfadd015ad24db4ff5e97", - "productRatePlanNumber" : null, - "ratePlanName" : "Monthly Contribution", - "subscriptionProductFeatures" : [ ], - "externallyManagedPlanId" : null, - "subscriptionRatePlanNumber" : null, - "ratePlanCharges" : [ { - "id" : "8a129d388962fe000189679374c9429e", - "originalChargeId" : "2c92a0ff64a5de7f0164acece1b51edc", - "productRatePlanChargeId" : "2c92a0fc5aacfadd015ad250bf2c6d38", - "number" : "C-01337228", - "name" : "Monthly Contribution", - "productRatePlanChargeNumber" : null, - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "version" : 6, - "pricingSummary" : "GBP10", - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "currency" : "GBP", - "price" : 10.000000000, - "tiers" : null, - "chargeModelConfiguration" : null, - "inputArgumentId" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "discountApplyDetails" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "billingPeriod" : "Month", - "specificBillingPeriod" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriodAlignment" : "AlignToCharge", - "quantity" : 1.000000000, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedUnitsCreditRates" : null, - "usageRecordRatingOption" : null, - "segment" : 1, - "effectiveStartDate" : "2018-07-18", - "effectiveEndDate" : "2023-04-01", - "processedThroughDate" : "2023-04-01", - "chargedThroughDate" : "2023-04-01", - "done" : true, - "triggerDate" : null, - "triggerEvent" : "CustomerAcceptance", - "endDateCondition" : "Subscription_End", - "upToPeriodsType" : null, - "upToPeriods" : null, - "specificEndDate" : null, - "mrr" : 10.000000000, - "dmrc" : 0.000000000, - "tcv" : 564.516129030, - "dtcv" : -35.483870970, - "originalOrderDate" : "2018-07-18", - "amendedByOrderOn" : "2023-04-01", - "description" : "", - "HolidayStart__c" : null, - "HolidayEnd__c" : null, - "ForceSync__c" : null - } ] - }, { - "id" : "8a129d388962fe000189679374ce42a1", - "lastChangeType" : "Add", - "productId" : "8a12865b8219d9b4018221061563643f", - "productName" : "Supporter Plus", - "productSku" : "ABC-00000032", - "productRatePlanId" : "8a12865b8219d9b401822106192b64dc", - "productRatePlanNumber" : null, - "ratePlanName" : "Supporter Plus Monthly", - "subscriptionProductFeatures" : [ ], - "externallyManagedPlanId" : null, - "subscriptionRatePlanNumber" : null, - "ratePlanCharges" : [ { - "id" : "8a129d388962fe000189679374d142a3", - "originalChargeId" : "8a12827c87374fca01873b21e74367f8", - "productRatePlanChargeId" : "8a12865b8219d9b401822106194e64e3", - "number" : "C-04240692", - "name" : "Supporter Plus Monthly Charge", - "productRatePlanChargeNumber" : null, - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "version" : 2, - "pricingSummary" : "GBP10", - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "currency" : "GBP", - "price" : 10.000000000, - "tiers" : null, - "chargeModelConfiguration" : null, - "inputArgumentId" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "discountApplyDetails" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "billingPeriod" : "Month", - "specificBillingPeriod" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriodAlignment" : "AlignToCharge", - "quantity" : 1.000000000, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedUnitsCreditRates" : null, - "usageRecordRatingOption" : null, - "segment" : 1, - "effectiveStartDate" : "2023-04-01", - "effectiveEndDate" : "2024-07-18", - "processedThroughDate" : "2023-07-01", - "chargedThroughDate" : "2023-08-01", - "done" : false, - "triggerDate" : null, - "triggerEvent" : "CustomerAcceptance", - "endDateCondition" : "Subscription_End", - "upToPeriodsType" : null, - "upToPeriods" : null, - "specificEndDate" : null, - "mrr" : 10.000000000, - "dmrc" : 0.000000000, - "tcv" : 155.483870970, - "dtcv" : 120.000000000, - "originalOrderDate" : "2023-04-01", - "amendedByOrderOn" : "2023-07-18", - "description" : "", - "HolidayStart__c" : null, - "HolidayEnd__c" : null, - "ForceSync__c" : null - } ] - } ], - "orderNumber" : "O-01054409", - "externallyManagedBy" : null, - "statusHistory" : [ { - "startDate" : "2018-07-18", - "endDate" : "2024-07-18", - "status" : "Active" - }, { - "startDate" : "2024-07-18", - "endDate" : null, - "status" : "OutOfTerm" - } ] -} \ No newline at end of file diff --git a/lambda/src/test/resources/Migrations/SupporterPlus2023V1V2/z-monthly-extra-case-1/account.json b/lambda/src/test/resources/Migrations/SupporterPlus2023V1V2/z-monthly-extra-case-1/account.json deleted file mode 100644 index c9572b3c..00000000 --- a/lambda/src/test/resources/Migrations/SupporterPlus2023V1V2/z-monthly-extra-case-1/account.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "basicInfo" : { - "id" : "ACCOUNT-ID", - "name" : "0010J00001qxpcAQAQ", - "accountNumber" : "ACCOUNT-NUMBER", - "notes" : null, - "status" : "Active", - "crmId" : "0010J00001qxpcAQAQ", - "batch" : "Batch1", - "invoiceTemplateId" : "2c92a0fb49377eae014951ca848e074b", - "communicationProfileId" : null, - "purchaseOrderNumber" : null, - "customerServiceRepName" : null, - "IdentityId__c" : "IDENTITY-ID-C", - "sfContactId__c" : "SF-CONTACT-ID-C", - "CCURN__c" : null, - "SpecialDeliveryInstructions__c" : null, - "NonStandardDataReason__c" : null, - "ProcessingAdvice__c" : null, - "CreatedRequestId__c" : null, - "RetryStatus__c" : null, - "salesRep" : null, - "sequenceSetId" : null - }, - "billingAndPayment" : { - "billCycleDay" : 20, - "currency" : "GBP", - "paymentTerm" : "Due Upon Receipt", - "paymentGateway" : "PayPal Express", - "defaultPaymentMethodId" : "2c92a0fd61b08db60161b28c0e7448c2", - "invoiceDeliveryPrefsPrint" : false, - "invoiceDeliveryPrefsEmail" : false, - "autoPay" : true, - "additionalEmailAddresses" : [ ] - }, - "metrics" : { - "balance" : 0.000000000, - "totalInvoiceBalance" : 0.000000000, - "creditBalance" : 0.000000000, - "contractedMrr" : 10.000000000 - }, - "billToContact" : null, - "soldToContact" : null, - "taxInfo" : null, - "success" : true -} \ No newline at end of file diff --git a/lambda/src/test/resources/Migrations/SupporterPlus2023V1V2/z-monthly-extra-case-1/catalogue.json b/lambda/src/test/resources/Migrations/SupporterPlus2023V1V2/z-monthly-extra-case-1/catalogue.json deleted file mode 100644 index f44dbf58..00000000 --- a/lambda/src/test/resources/Migrations/SupporterPlus2023V1V2/z-monthly-extra-case-1/catalogue.json +++ /dev/null @@ -1,14201 +0,0 @@ -{ - "products" : [ { - "id" : "2c92a0fb4bb97034014bbbc561fa4fed", - "sku" : "SKU-00000013", - "name" : "Supporter", - "description" : "This is the description of the supporter membership.", - "category" : null, - "effectiveStartDate" : "2014-01-01", - "effectiveEndDate" : "2099-01-01", - "productNumber" : null, - "allowFeatureChanges" : false, - "ProductEnabled__c" : "True", - "Entitlements__c" : "Events:SUPPORTER", - "AcquisitionProfile__c" : "Paid", - "ProductType__c" : "Membership", - "ProductLevel__c" : "400", - "Tier__c" : "Supporter", - "productRatePlans" : [ { - "id" : "8a129ce886834fa90186a20c3ee70b6a", - "status" : "Active", - "name" : "Supporter - annual (2023 Price)", - "description" : "", - "effectiveStartDate" : "2023-03-01", - "effectiveEndDate" : "2099-01-01", - "TermType__c" : "TERMED", - "FrontendId__c" : "Yearly", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A104", - "externalIdSourceSystem" : "", - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "8a129ce886834fa90186a20c3f4f0b6c", - "name" : "Supporter Membership - Annual", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD120", "EUR95", "GBP75", "CAD120", "AUD160" ], - "pricing" : [ { - "currency" : "USD", - "price" : 120.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 95.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 75.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 120.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 160.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Annual", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : true, - "taxCode" : "Membership Global Tax", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1020", - "ProductType__c" : "Supporter", - "triggerEvent" : "ContractEffective", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Supporter", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Membership - Supporter", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "8a1287c586832d250186a2040b1548fe", - "status" : "Active", - "name" : "Supporter - monthly (2023 Price)", - "description" : "", - "effectiveStartDate" : "2023-03-01", - "effectiveEndDate" : "2099-01-01", - "TermType__c" : "TERMED", - "FrontendId__c" : "Monthly", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A101", - "externalIdSourceSystem" : "", - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "8a12800986832d1d0186a20bf5136471", - "name" : "Supporter Membership - Monthly", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD9.99", "EUR9.99", "GBP7", "CAD12.99", "AUD14.99" ], - "pricing" : [ { - "currency" : "USD", - "price" : 9.990000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 9.990000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 7.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 12.990000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 14.990000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : true, - "taxCode" : "Membership Global Tax", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1020", - "ProductType__c" : "Supporter", - "triggerEvent" : "ContractEffective", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Supporter", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Membership - Supporter", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fb4c5481db014c69f4a1e03bbd", - "status" : "Expired", - "name" : "Non Founder Supporter - annual", - "description" : "", - "effectiveStartDate" : "2015-03-31", - "effectiveEndDate" : "2023-03-02", - "TermType__c" : null, - "FrontendId__c" : "Yearly", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A104", - "externalIdSourceSystem" : "", - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fb4c5481db014c69f4a2013bbf", - "name" : "Supporter Membership - Annual", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD69", "EUR49", "GBP49", "CAD69", "AUD100" ], - "pricing" : [ { - "currency" : "USD", - "price" : 69.000000000, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 49.000000000, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 49.000000000, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 69.000000000, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 100.000000000, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Annual", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Membership Global Tax", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1020", - "ProductType__c" : "Supporter", - "triggerEvent" : "ContractEffective", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Supporter", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Membership - Supporter", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fb4bb97034014bbbc562604ff7", - "status" : "Expired", - "name" : "Supporter - annual", - "description" : "", - "effectiveStartDate" : "2014-01-01", - "effectiveEndDate" : "2015-05-02", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A104", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fb4bb97034014bbbc5626f4ff9", - "name" : "Supporter Membership - Annual", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP50" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 50.000000000, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Annual", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Membership Global Tax", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1020", - "ProductType__c" : "Supporter", - "triggerEvent" : "ContractEffective", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Supporter", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Membership - Supporter", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fb4bb97034014bbbc562114fef", - "status" : "Expired", - "name" : "Supporter - monthly", - "description" : "", - "effectiveStartDate" : "2014-01-01", - "effectiveEndDate" : "2015-05-02", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A101", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fb4bb97034014bbbc562274ff1", - "name" : "Supporter Membership - Monthly", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP5" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 5.000000000, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Membership Global Tax", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1020", - "ProductType__c" : "Supporter", - "triggerEvent" : "ContractEffective", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Supporter", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Membership - Supporter", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0f94c547592014c69f5b0ff4f7e", - "status" : "Expired", - "name" : "Non Founder Supporter - monthly", - "description" : "", - "effectiveStartDate" : "2015-03-31", - "effectiveEndDate" : "2023-03-02", - "TermType__c" : null, - "FrontendId__c" : "Monthly", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A101", - "externalIdSourceSystem" : "", - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0f94c547592014c69f5b1204f80", - "name" : "Supporter Membership - Monthly", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD6.99", "EUR4.99", "GBP5", "CAD6.99", "AUD10" ], - "pricing" : [ { - "currency" : "USD", - "price" : 6.990000000, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 4.990000000, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 5.000000000, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 6.990000000, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 10.000000000, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Membership Global Tax", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1020", - "ProductType__c" : "Supporter", - "triggerEvent" : "ContractEffective", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Supporter", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Membership - Supporter", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - } ], - "productFeatures" : [ ] - }, { - "id" : "2c92a0ff5345f9200153559c6d2a3385", - "sku" : "ABC-00000012", - "name" : "Discounts", - "description" : "Template discount rate plans", - "category" : null, - "effectiveStartDate" : "2007-03-08", - "effectiveEndDate" : "2099-03-08", - "productNumber" : null, - "allowFeatureChanges" : false, - "ProductEnabled__c" : null, - "Entitlements__c" : null, - "AcquisitionProfile__c" : null, - "ProductType__c" : null, - "ProductLevel__c" : null, - "Tier__c" : null, - "productRatePlans" : [ { - "id" : "8a128432880a889f01880f873d2b1b7a", - "status" : "Active", - "name" : "PM 2023 - AUD - Price Freeze - 3 months", - "description" : "", - "effectiveStartDate" : "2023-05-12", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : null, - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : null, - "externalIdSourceSystem" : "", - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "8a12989f880a9e8001880f8836a32b33", - "name" : "PM 2023 - AUD - Price Freeze - 3 months", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "0% discount", "33.29% discount" ], - "pricing" : [ { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 33.290000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 3, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : null, - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : "PRP-00000004" - }, { - "id" : "8a1290f1880a9e7401880f834fb70bce", - "status" : "Active", - "name" : "PM 2023 - CAD - Price Freeze - 3 months", - "description" : "", - "effectiveStartDate" : "2023-05-12", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : null, - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : null, - "externalIdSourceSystem" : "", - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "8a12921d880a9e7901880f841d0a5c71", - "name" : "PM 2023 - CAD - Price Freeze - 3 months", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "0% discount", "46.19% discount" ], - "pricing" : [ { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 46.190000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 3, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : null, - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : "PRP-00000003" - }, { - "id" : "8a1282d4880a889501880f817b9d5c7a", - "status" : "Active", - "name" : " PM 2023 - EUR - Price Freeze - 3 months", - "description" : "", - "effectiveStartDate" : "2023-05-12", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : null, - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : null, - "externalIdSourceSystem" : "", - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "8a128cd5880a888f01880f8229e17ceb", - "name" : " PM 2023 - EUR - Price Freeze - 3 months", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "50.5% discount", "0% discount" ], - "pricing" : [ { - "currency" : "EUR", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 50.500000000, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 3, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : null, - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : "PRP-00000002" - }, { - "id" : "8a12867b880a888901880f7f007913f6", - "status" : "Active", - "name" : "PM 2023 - USD - Price Freeze - 3 months", - "description" : "", - "effectiveStartDate" : "2023-05-12", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : null, - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : null, - "externalIdSourceSystem" : "", - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "8a129e06880a9e7c01880f7fe5ec4d06", - "name" : "PM 2023 - USD - Price Freeze - 3 months", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "30.03% discount", "0% discount" ], - "pricing" : [ { - "currency" : "USD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 30.030000000, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 3, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : null, - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : "PRP-00000001" - }, { - "id" : "8a1297638021d0d7018022d4bb3342c2", - "status" : "Active", - "name" : "PM 2022 - 13% off for 3 months - Freeze", - "description" : null, - "effectiveStartDate" : "2022-04-13", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "8a1291128021d0cf018022d4bda76fdb", - "name" : "PM 2022 - 13% off for 3 months - Freeze", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "13% discount", "13% discount", "13% discount", "13% discount", "13% discount", "13% discount" ], - "pricing" : [ { - "currency" : "USD", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 13.000000000, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 13.000000000, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 13.000000000, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 13.000000000, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 13.000000000, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 13.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 3, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : null, - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "8a12972d8021d0d3018022d4c2a36f0c", - "status" : "Active", - "name" : "PM 2022 - 18% off for 3 months - Freeze", - "description" : null, - "effectiveStartDate" : "2022-04-13", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "8a128aa88021da2d018022d4c4f06176", - "name" : "PM 2022 - 18% off for 3 months - Freeze", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "18% discount", "18% discount", "18% discount", "18% discount", "18% discount", "18% discount" ], - "pricing" : [ { - "currency" : "USD", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 18.000000000, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 18.000000000, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 18.000000000, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 18.000000000, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 18.000000000, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 18.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 3, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : null, - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "8a1295918021d0d2018022d4ca0c4aac", - "status" : "Active", - "name" : "PM 2022 - 25% off for 3 months - Freeze", - "description" : null, - "effectiveStartDate" : "2022-04-13", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "8a1295918021d0d2018022d4cb8e4ab6", - "name" : "PM 2022 - 25% off for 3 months - Freeze", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "25% discount" ], - "pricing" : [ { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 25.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 3, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : null, - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "8a128f138021d0d6018022d4c65b0384", - "status" : "Active", - "name" : "PM 2022 - 20% off for 3 months - Freeze", - "description" : null, - "effectiveStartDate" : "2022-04-13", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "8a129f6f8021d0d4018022d4c84f5545", - "name" : "PM 2022 - 20% off for 3 months - Freeze", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "20% discount" ], - "pricing" : [ { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 20.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 3, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : null, - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "8a128eda8021d0d4018022d4af5e4318", - "status" : "Active", - "name" : "PM 2022 - 7% off for 3 months - Freeze", - "description" : null, - "effectiveStartDate" : "2022-04-13", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "8a128ed88021d0e0018022d4b17e7570", - "name" : "PM 2022 - 7% off for 3 months - Freeze", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "7% discount" ], - "pricing" : [ { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 7.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 3, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : null, - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "8a128eda8021d0d4018022d4aab842f9", - "status" : "Active", - "name" : "PM 2022 - 6% off for 3 months - Freeze", - "description" : null, - "effectiveStartDate" : "2022-04-13", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "8a12972d8021d0d3018022d4ad3c6db1", - "name" : "PM 2022 - 6% off for 3 months - Freeze", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "6% discount" ], - "pricing" : [ { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 6.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 3, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : null, - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "8a128e2d8021d0d4018022d4bf72421e", - "status" : "Active", - "name" : "PM 2022 - 17% off for 3 months - Freeze", - "description" : null, - "effectiveStartDate" : "2022-04-13", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "8a1291128021d0cf018022d4c126703b", - "name" : "PM 2022 - 17% off for 3 months - Freeze", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "17% discount" ], - "pricing" : [ { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 17.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 3, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : null, - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "8a128aa88021da2d018022d4b38b613e", - "status" : "Active", - "name" : "PM 2022 - 8% off for 3 months - Freeze", - "description" : null, - "effectiveStartDate" : "2022-04-13", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "8a128b618021d0cf018022d4b554090b", - "name" : "PM 2022 - 8% off for 3 months - Freeze", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "8% discount", "8% discount", "8% discount", "8% discount", "8% discount", "8% discount" ], - "pricing" : [ { - "currency" : "USD", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 8.000000000, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 8.000000000, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 8.000000000, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 8.000000000, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 8.000000000, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 8.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 3, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : null, - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "8a128aa88021da2d018022d4a6856101", - "status" : "Active", - "name" : "PM 2022 - 5% off for 3 months - Freeze", - "description" : null, - "effectiveStartDate" : "2022-04-13", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "8a1295918021d0d2018022d4a8784983", - "name" : "PM 2022 - 5% off for 3 months - Freeze", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "5% discount" ], - "pricing" : [ { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 5.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 3, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : null, - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "8a12892d8021d0dc018022d4b6f94f05", - "status" : "Active", - "name" : "PM 2022 - 11% off for 3 months - Freeze", - "description" : null, - "effectiveStartDate" : "2022-04-13", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "8a128eda8021d0d4018022d4b9024332", - "name" : "PM 2022 - 11% off for 3 months - Freeze", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "11% discount" ], - "pricing" : [ { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 11.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 3, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : null, - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "8a12865b8021d0d9018022d2a2e52c74", - "status" : "Active", - "name" : "PM 2022 - 10% off for 12 months - Max Discount", - "description" : null, - "effectiveStartDate" : "2022-04-13", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "8a1295258021d0d3018022d2b4251038", - "name" : "PM 2022 - 10% off for 12 months - Max Discount", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "10% discount", "10% discount", "10% discount", "10% discount", "10% discount", "10% discount" ], - "pricing" : [ { - "currency" : "USD", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 10.000000000, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 10.000000000, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 10.000000000, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 10.000000000, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 10.000000000, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 10.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 12, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : null, - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "8a12801c8021d0e8018022d4a1815301", - "status" : "Active", - "name" : "PM 2022 - 4% off for 3 months - Freeze", - "description" : null, - "effectiveStartDate" : "2022-04-13", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "8a129b9c8021d0d2018022d4a4417880", - "name" : "PM 2022 - 4% off for 3 months - Freeze", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "4% discount" ], - "pricing" : [ { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : 0.000000000, - "overagePrice" : null, - "discountPercentage" : 4.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 3, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : null, - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0ff74296d7201742b7daf20123d", - "status" : "Active", - "name" : "Digipack Acq Offer - 1st Payment", - "description" : "a percentage discount on Annual Digipack subscriptions, where the percentage is dependent on the billing currency. This discount is available so that our Customer Service Reps are able to provide the same level of discounting as is available on the website, to subscriptions acquired through the call centre", - "effectiveStartDate" : "2020-08-27", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : null, - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0ff74296d7201742b7daf2f123f", - "name" : "Digipack Acq Offer - 1st Payment", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "17.09% discount", "25.53% discount", "16.11% discount", "16.81% discount", "20.09% discount", "18.61% discount" ], - "pricing" : [ { - "currency" : "USD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 17.090000000, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 25.530000000, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 16.110000000, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 16.810000000, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 20.090000000, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 18.610000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 12, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0ff65c757150165c8eab88b788e", - "status" : "Expired", - "name" : "Home Delivery Adjustment charge", - "description" : "Call centre version", - "effectiveStartDate" : "2018-09-11", - "effectiveEndDate" : "2019-09-11", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0ff65c757150165c8eab8c07896", - "name" : "Adjustment charge", - "type" : "OneTime", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP0" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "One_Time", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : null, - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : null, - "billingPeriodAlignment" : null, - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : null, - "taxable" : false, - "taxCode" : "", - "taxMode" : null, - "ProductCode__c" : "P1299", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Home Delivery", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Home Delivery", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0ff64176cd40164232c8ec97661", - "status" : "Active", - "name" : "Cancellation Save Discount - 25% off for 3 months", - "description" : "", - "effectiveStartDate" : "2018-06-22", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0ff64176cd40164232c8eda7664", - "name" : "25% discount on subscription for 3 months", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "25% discount", "25% discount", "25% discount", "25% discount", "25% discount", "25% discount" ], - "pricing" : [ { - "currency" : "USD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 25.000000000, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 25.000000000, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 25.000000000, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 25.000000000, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 25.000000000, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 25.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 3, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0ff5e09bd67015e0a93efe86d2e", - "status" : "Active", - "name" : "Customer Experience Adjustment - Voucher", - "description" : "", - "effectiveStartDate" : "2016-08-01", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : "TERMED", - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0ff5e09bd67015e0a93f0026d34", - "name" : "Adjustment charge", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP0" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "DefaultFromCustomer", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : "", - "taxMode" : null, - "ProductCode__c" : "P1299", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Voucher Book", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Voucher Book", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0ff56fe33f301572314aed277fb", - "status" : "Active", - "name" : "Percentage Adjustment", - "description" : "", - "effectiveStartDate" : "2007-09-13", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fc56fe26ba01572315d66d026e", - "name" : "Adjustment charge", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "100% discount" ], - "pricing" : [ { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 100.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "DefaultFromCustomer", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : true, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Home Delivery", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Home Delivery", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0ff5345f9220153559d915d5c26", - "status" : "Active", - "name" : "Percentage", - "description" : "", - "effectiveStartDate" : "2007-03-08", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : null, - "RatePlanType__c" : "Promotion", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fd5345efa10153559e97bb76c6", - "name" : "Percentage", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "0% discount", "0% discount", "0% discount", "0% discount", "0% discount", "0% discount" ], - "pricing" : [ { - "currency" : "USD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "DefaultFromCustomer", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : null, - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fe750b35d001750d4522f43817", - "status" : "Active", - "name" : "DO NOT USE MANUALLY: Holiday credit - automated - Digital Voucher", - "description" : "Holiday credit applied automatically by the Holiday Stop Processor.\n\n*** Not for manual use! ***\n\nSee:\nhttps://github.com/guardian/support-service-lambdas/tree/master/handlers/holiday-stop-processor\n", - "effectiveStartDate" : "2020-09-14", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fe750b35d001750d4523103819", - "name" : "Holiday Credit", - "type" : "OneTime", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD0", "NZD0", "EUR0", "GBP0", "CAD0", "AUD0" ], - "pricing" : [ { - "currency" : "USD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "One_Time", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : null, - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : null, - "billingPeriodAlignment" : null, - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : null, - "taxable" : false, - "taxCode" : "Guardian Weekly", - "taxMode" : null, - "ProductCode__c" : "P1299", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fe7375d60901737c64808e4be1", - "status" : "Active", - "name" : "DO NOT USE MANUALLY: Delivery-problem credit - automated - Home Delivery", - "description" : "Credit for a delivery problem, applied automatically by the delivery-problem credit processor.\n\n*** Not for manual use! ***\n\nSee:\nTODO - reference to codebase here\n", - "effectiveStartDate" : "2020-01-13", - "effectiveEndDate" : "2099-01-01", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fe7375d60901737c6480bc4be3", - "name" : "Delivery-problem credit", - "type" : "OneTime", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD0", "NZD0", "EUR0", "GBP0", "CAD0", "AUD0" ], - "pricing" : [ { - "currency" : "USD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "One_Time", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : null, - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : null, - "billingPeriodAlignment" : null, - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : null, - "taxable" : false, - "taxCode" : "Guardian Weekly", - "taxMode" : null, - "ProductCode__c" : "P1299", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Home Delivery", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Home Delivery", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fe72c5c3480172c7f1fb545f81", - "status" : "Active", - "name" : "PM 2020 - 11% off for 3 months - Sunday Freeze", - "description" : "", - "effectiveStartDate" : "2020-06-29", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : null, - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fe72c5c3480172c7f1fb7f5f87", - "name" : "PM 2020 - 11% off for 3 months - Sunday Freeze", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "11% discount" ], - "pricing" : [ { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 11.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 3, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fe65f0ac1f0165f2189bca248c", - "status" : "Active", - "name" : "Digipack Discount - 20% off for 12 months", - "description" : "", - "effectiveStartDate" : "2018-06-22", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : null, - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fe65f0ac1f0165f2189bdf248f", - "name" : "20% discount on subscription for 12 months", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "20% discount", "20% discount", "20% discount", "20% discount", "20% discount", "20% discount" ], - "pricing" : [ { - "currency" : "USD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 20.000000000, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 20.000000000, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 20.000000000, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 20.000000000, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 20.000000000, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 20.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 12, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fe62b7edde0162dd29b8124a8e", - "status" : "Active", - "name" : "Guardian Weekly Adjustment charge", - "description" : "To fix premature refunds", - "effectiveStartDate" : "2018-04-19", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fe62b7edde0162dd29b83f4a9e", - "name" : "Adjustment charge", - "type" : "OneTime", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD0", "NZD0", "EUR0", "GBP0", "CAD0", "AUD0" ], - "pricing" : [ { - "currency" : "USD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "One_Time", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : null, - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : null, - "billingPeriodAlignment" : null, - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : null, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "Adjustment for premature refunds where the product was not removed in advance.", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fe5fe26834015fe33c70a24f50", - "status" : "Active", - "name" : "Black Friday 50% for 3 months for existing customers", - "description" : "", - "effectiveStartDate" : "2007-03-08", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : null, - "RatePlanType__c" : "Promotion", - "PromotionCode__c" : "TBC", - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fe5fe26834015fe33c70b74f52", - "name" : "Percentage", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "0% discount", "0% discount", "0% discount", "50% discount", "0% discount", "0% discount" ], - "pricing" : [ { - "currency" : "USD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 50.000000000, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 3, - "upToPeriodsType" : "Months", - "billingDay" : "DefaultFromCustomer", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : null, - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fe56fe33ff015723143e4778be", - "status" : "Active", - "name" : "Fixed Adjustment", - "description" : "", - "effectiveStartDate" : "2007-09-13", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0ff576f2f760157aec73aa34ccc", - "name" : "Adjustment charge", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP0" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "DefaultFromCustomer", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : false, - "taxCode" : "", - "taxMode" : null, - "ProductCode__c" : "P1299", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize upon invoicing", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Home Delivery", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Home Delivery", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fd6f1426ef016f18a86c515ed7", - "status" : "Active", - "name" : "Cancellation Save Discount - 20% off for 12 months", - "description" : "", - "effectiveStartDate" : "2019-12-18", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fd6f1426ef016f18a86c705ed9", - "name" : "20% discount on subscription for 12 months", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "25% discount", "25% discount", "25% discount", "20% discount", "25% discount", "25% discount" ], - "pricing" : [ { - "currency" : "USD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 25.000000000, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 25.000000000, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 25.000000000, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 20.000000000, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 25.000000000, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 25.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 12, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fc6ae918b6016b080950e96d75", - "status" : "Active", - "name" : "Guardian Weekly Holiday Credit", - "description" : "", - "effectiveStartDate" : "2019-05-30", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fc6ae918b6016b0809512f6d7f", - "name" : "Holiday Credit", - "type" : "Usage", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD0", "NZD0", "EUR0", "GBP0", "CAD0", "AUD0" ], - "pricing" : [ { - "currency" : "USD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 1, - "upToPeriodsType" : "Billing_Periods", - "billingDay" : "DefaultFromCustomer", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : "ByBillingPeriod", - "billingPeriod" : "Annual", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fc610e738901612d83fce461fd", - "status" : "Expired", - "name" : "Tabloid launch 25% off for one year for existing customers", - "description" : "", - "effectiveStartDate" : "2017-12-19", - "effectiveEndDate" : "2020-12-19", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : "GTL99C", - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fc610e738901612d85acb06a73", - "name" : "Percentage", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "25% discount" ], - "pricing" : [ { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 25.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 12, - "upToPeriodsType" : "Months", - "billingDay" : "DefaultFromCustomer", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : null, - "triggerEvent" : "CustomerAcceptance", - "description" : "25% off for one year", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fc5b42d2c9015b6259f7f40040", - "status" : "Expired", - "name" : "Guardian Weekly Holiday Credit - old", - "description" : "", - "effectiveStartDate" : "2007-08-18", - "effectiveEndDate" : "2019-05-29", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a00e6ad50f58016ad9ca59962c8c", - "name" : "Holiday Credit", - "type" : "OneTime", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD0", "NZD0", "EUR0", "GBP0", "CAD0", "AUD0" ], - "pricing" : [ { - "currency" : "USD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "One_Time", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : null, - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : null, - "billingPeriodAlignment" : null, - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : null, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a0ff5b42e3ad015b627c142f072a", - "name" : "Holiday Credit", - "type" : "Usage", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD0", "NZD0", "EUR0", "GBP0", "CAD0", "AUD0" ], - "pricing" : [ { - "currency" : "USD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 1, - "upToPeriodsType" : "Billing_Periods", - "billingDay" : "DefaultFromCustomer", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : "ByBillingPeriod", - "billingPeriod" : "Annual", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fc596d31ea01598d623a297897", - "status" : "Active", - "name" : "Home Delivery Holiday Credit v2", - "description" : "", - "effectiveStartDate" : "2007-08-18", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fc596d31ea01598d72baf33417", - "name" : "Holiday Credit", - "type" : "Usage", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP0" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "DefaultFromCustomer", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : "ByBillingPeriod", - "billingPeriod" : "Annual", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : false, - "taxCode" : "", - "taxMode" : null, - "ProductCode__c" : "P1299", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Home Delivery", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Home Delivery", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fc569c311201569dfbecb4215f", - "status" : "Expired", - "name" : "Home Delivery Holiday Credit", - "description" : "Call centre version", - "effectiveStartDate" : "2007-08-18", - "effectiveEndDate" : "2017-07-31", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fe569c441901569e03b5cc619e", - "name" : "Holiday Credit", - "type" : "OneTime", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP0" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "One_Time", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : null, - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : null, - "billingPeriodAlignment" : null, - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : null, - "taxable" : false, - "taxCode" : "", - "taxMode" : null, - "ProductCode__c" : "P1299", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Home Delivery", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Home Delivery", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0117468816901748bdb3a8c1ac4", - "status" : "Active", - "name" : "DO NOT USE MANUALLY: Holiday credit - automated - Voucher", - "description" : "Holiday credit applied automatically by the Holiday Stop Processor.\n\n*** Not for manual use! ***\n\nSee:\nhttps://github.com/guardian/support-service-lambdas/tree/master/handlers/holiday-stop-processor\n", - "effectiveStartDate" : "2020-09-14", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0117468816901748bdb3aab1ac6", - "name" : "Holiday Credit", - "type" : "OneTime", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD0", "NZD0", "EUR0", "GBP0", "CAD0", "AUD0" ], - "pricing" : [ { - "currency" : "USD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "One_Time", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : null, - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : null, - "billingPeriodAlignment" : null, - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : null, - "taxable" : false, - "taxCode" : "Guardian Weekly", - "taxMode" : null, - "ProductCode__c" : "P1299", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Voucher Book", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Voucher Book", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a01072c5c2e30172c7f0764772c9", - "status" : "Active", - "name" : "PM 2020 - 6% off for 3 months - Weekend Freeze", - "description" : "", - "effectiveStartDate" : "2020-06-29", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : null, - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a01072c5c2e30172c7f0766372cb", - "name" : "PM 2020 - 6% off for 3 months - Weekend Freeze", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "6% discount" ], - "pricing" : [ { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 6.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 3, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a01072c5c2e20172c7efe01125c6", - "status" : "Active", - "name" : "PM 2020 - 9% off for 3 months - Sixday Freeze", - "description" : "", - "effectiveStartDate" : "2020-06-29", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : null, - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a01072c5c2e20172c7efe02325ca", - "name" : "PM 2020 - 9% off for 3 months - Sixday Freeze", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "9% discount" ], - "pricing" : [ { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 9.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 3, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a01072c5c2e20172c7ee96b91a7c", - "status" : "Active", - "name" : "PM 2020 - 11% off for 3 months - Everyday Freeze", - "description" : "", - "effectiveStartDate" : "2020-06-29", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : null, - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a01072c5c2e20172c7ee96e71a7e", - "name" : "PM 2020 - 11% off for 3 months - Everyday Freeze", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "11% discount" ], - "pricing" : [ { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 11.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 3, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a00f7468817d01748bd88f0d1d6c", - "status" : "Active", - "name" : "DO NOT USE MANUALLY: Holiday credit - automated - Home Delivery", - "description" : "Holiday credit applied automatically by the Holiday Stop Processor.\n\n*** Not for manual use! ***\n\nSee:\nhttps://github.com/guardian/support-service-lambdas/tree/master/handlers/holiday-stop-processor\n", - "effectiveStartDate" : "2020-09-14", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a00f7468817d01748bd88f2e1d6e", - "name" : "Holiday Credit", - "type" : "OneTime", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD0", "NZD0", "EUR0", "GBP0", "CAD0", "AUD0" ], - "pricing" : [ { - "currency" : "USD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "One_Time", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : null, - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : null, - "billingPeriodAlignment" : null, - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : null, - "taxable" : false, - "taxCode" : "Guardian Weekly", - "taxMode" : null, - "ProductCode__c" : "P1299", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Home Delivery", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Home Delivery", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a00d6f9de7f6016f9f6f52765aa4", - "status" : "Active", - "name" : "DO NOT USE MANUALLY: Delivery-problem credit - automated - GW", - "description" : "Credit for a delivery problem, applied automatically by the delivery-problem credit processor.\n\n*** Not for manual use! ***\n\nSee:\nTODO - reference to codebase here\n", - "effectiveStartDate" : "2020-01-13", - "effectiveEndDate" : "2099-01-01", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a00d6f9de7f6016f9f6f529e5aaf", - "name" : "Delivery-problem credit", - "type" : "OneTime", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD0", "NZD0", "EUR0", "GBP0", "CAD0", "AUD0" ], - "pricing" : [ { - "currency" : "USD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "One_Time", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : null, - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : null, - "billingPeriodAlignment" : null, - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : null, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a00872c5d4770172c7f140a32d62", - "status" : "Active", - "name" : "PM 2020 - 16% off for 3 months - Saturday Freeze", - "description" : "", - "effectiveStartDate" : "2020-06-29", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : null, - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a00872c5d4770172c7f140c52d64", - "name" : "PM 2020 - 16% off for 3 months - Saturday Freeze", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "16% discount" ], - "pricing" : [ { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 16.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 3, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0086f1426d1016f18a9c71058a5", - "status" : "Active", - "name" : "Acquisition Discount - 25% off for 12 months", - "description" : "", - "effectiveStartDate" : "2019-12-18", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0086f1426d1016f18a9c73058a7", - "name" : "25% discount on subscription for 12 months", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "25% discount", "25% discount", "25% discount", "25% discount", "25% discount", "25% discount" ], - "pricing" : [ { - "currency" : "USD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 25.000000000, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 25.000000000, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 25.000000000, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 25.000000000, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 25.000000000, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 25.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 12, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0086b25c750016b32548239308d", - "status" : "Active", - "name" : "Customer Experience - Complementary 100% discount", - "description" : "Head-office use only", - "effectiveStartDate" : "2007-03-08", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : null, - "RatePlanType__c" : "Promotion", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0086b25c750016b32548256308f", - "name" : "Percentage", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "100% discount", "100% discount", "100% discount", "100% discount", "100% discount", "100% discount" ], - "pricing" : [ { - "currency" : "USD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 100.000000000, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 100.000000000, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 100.000000000, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 100.000000000, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 100.000000000, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 100.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "DefaultFromCustomer", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : null, - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a00864176ce90164232ac0d90fc1", - "status" : "Active", - "name" : "Cancellation Save Discount - 50% off for 3 months", - "description" : "", - "effectiveStartDate" : "2018-06-22", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0ff64176cd50164232c7e493410", - "name" : "50% discount on subscription for 3 months", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "50% discount", "50% discount", "50% discount", "50% discount", "50% discount", "50% discount" ], - "pricing" : [ { - "currency" : "USD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 50.000000000, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 50.000000000, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 50.000000000, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 50.000000000, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 50.000000000, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 50.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 3, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a00772c5c2e90172c7ebd62a68c4", - "status" : "Active", - "name" : "PM 2020 - 10% off for 12 months - Max Discount", - "description" : "", - "effectiveStartDate" : "2020-06-29", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : null, - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a01072c5c2e30172c7ed605b60d3", - "name" : "PM 2020 - 10% off for 12 months - Max Discount", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "10% discount", "10% discount", "10% discount", "10% discount", "10% discount" ], - "pricing" : [ { - "currency" : "USD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 10.000000000, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 10.000000000, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 10.000000000, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 10.000000000, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 10.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 12, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0076ae9189c016b080c930a6186", - "status" : "Active", - "name" : "DO NOT USE MANUALLY: Holiday credit - automated - GW", - "description" : "Holiday credit applied automatically by the Holiday Stop Processor.\n\n*** Not for manual use! ***\n\nSee:\nhttps://github.com/guardian/support-service-lambdas/tree/master/handlers/holiday-stop-processor\n", - "effectiveStartDate" : "2019-05-30", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A000", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0086ae928d7016b080f638477a6", - "name" : "Holiday Credit", - "type" : "OneTime", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD0", "NZD0", "EUR0", "GBP0", "CAD0", "AUD0" ], - "pricing" : [ { - "currency" : "USD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "One_Time", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : null, - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : null, - "billingPeriodAlignment" : null, - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : null, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "8a12902787109bb7018712c479592ee9", - "status" : "Active", - "name" : "PM 2023 - 40% off for 12 months - Freeze", - "description" : "", - "effectiveStartDate" : "2023-03-29", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : null, - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : null, - "externalIdSourceSystem" : "", - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "8a1290f187109bb0018712c5227f7842", - "name" : "PM 2023 - 40% off for 12 months - Freeze", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "40% discount", "40% discount", "40% discount", "40% discount", "40% discount", "40% discount" ], - "pricing" : [ { - "currency" : "USD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 40.000000000, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 40.000000000, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 40.000000000, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 40.000000000, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 40.000000000, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 40.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 12, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : null, - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "8a12989f87109bb0018712c33dc63674", - "status" : "Active", - "name" : "PM 2023 - 40% off for 3 months - Freeze", - "description" : "", - "effectiveStartDate" : "2023-03-29", - "effectiveEndDate" : "2099-03-08", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : null, - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : null, - "externalIdSourceSystem" : "", - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "8a12867b871080e2018712c3f4177d3d", - "name" : "PM 2023 - 40% off for 3 months - Freeze", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "40% discount", "40% discount", "40% discount", "40% discount", "40% discount", "40% discount" ], - "pricing" : [ { - "currency" : "USD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 40.000000000, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 40.000000000, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 40.000000000, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 40.000000000, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 40.000000000, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 40.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 3, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : null, - "ProductType__c" : "Adjustment", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - } ], - "productFeatures" : [ ] - }, { - "id" : "8a12865b8219d9b4018221061563643f", - "sku" : "ABC-00000032", - "name" : "Supporter Plus", - "description" : "New Support product July 2022", - "category" : null, - "effectiveStartDate" : "2013-02-16", - "effectiveEndDate" : "2099-02-03", - "productNumber" : null, - "allowFeatureChanges" : false, - "ProductEnabled__c" : "True", - "Entitlements__c" : null, - "AcquisitionProfile__c" : "Paid", - "ProductType__c" : "Supporter Plus", - "ProductLevel__c" : null, - "Tier__c" : null, - "productRatePlans" : [ { - "id" : "8a12865b8219d9b401822106192b64dc", - "status" : "Expired", - "name" : "Supporter Plus Monthly", - "description" : "", - "effectiveStartDate" : "2013-03-11", - "effectiveEndDate" : "2023-07-12", - "TermType__c" : null, - "FrontendId__c" : "Monthly", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A101", - "externalIdSourceSystem" : "", - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "8a12865b8219d9b401822106194e64e3", - "name" : "Supporter Plus Monthly Charge", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD13", "NZD17", "EUR10", "GBP10", "CAD13", "AUD17" ], - "pricing" : [ { - "currency" : "USD", - "price" : 13.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 17.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 10.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 10.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 13.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 17.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Supporter Plus Global Tax", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1015", - "ProductType__c" : "Supporter Plus", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Supporter Plus", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Supporter Plus", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "8a12865b8219d9b40182210618a464ba", - "status" : "Expired", - "name" : "Supporter Plus Annual", - "description" : "", - "effectiveStartDate" : "2013-03-11", - "effectiveEndDate" : "2023-07-12", - "TermType__c" : null, - "FrontendId__c" : "Yearly", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A104", - "externalIdSourceSystem" : "", - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "8a12865b8219d9b40182210618c664c1", - "name" : "Supporter Plus Annual Charge", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD120", "NZD160", "EUR95", "GBP95", "CAD120", "AUD160" ], - "pricing" : [ { - "currency" : "USD", - "price" : 120.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 160.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 95.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 95.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 120.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 160.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Annual", - "billingPeriodAlignment" : "AlignToTermStart", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : true, - "taxCode" : "Supporter Plus Global Tax", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1015", - "ProductType__c" : "Supporter Plus", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Supporter Plus", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Supporter Plus", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "8a128ed885fc6ded018602296ace3eb8", - "status" : "Active", - "name" : "Supporter Plus V2 - Monthly", - "description" : "", - "effectiveStartDate" : "2013-03-11", - "effectiveEndDate" : "2099-01-12", - "TermType__c" : null, - "FrontendId__c" : "Monthly", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A101", - "externalIdSourceSystem" : "", - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "8a128d7085fc6dec01860234cd075270", - "name" : "Contribution", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD0", "NZD0", "EUR0", "GBP0", "CAD0", "AUD0" ], - "pricing" : [ { - "currency" : "USD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : true, - "taxCode" : "Contribution", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1015", - "ProductType__c" : "Contributor", - "triggerEvent" : "ContractEffective", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize upon invoicing", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Supporter Plus - Contribution", - "deferredRevenueAccountingCodeType" : "SalesRevenue", - "recognizedRevenueAccountingCode" : "Supporter Plus - Contribution", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "8a128ed885fc6ded018602296af13eba", - "name" : "Supporter Plus Monthly Charge", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD13", "NZD17", "EUR10", "GBP10", "CAD13", "AUD17" ], - "pricing" : [ { - "currency" : "USD", - "price" : 13.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 17.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 10.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 10.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 13.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 17.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Supporter Plus Global Tax", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1015", - "ProductType__c" : "Supporter Plus", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Supporter Plus", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Supporter Plus", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "8a128ed885fc6ded01860228f77e3d5a", - "status" : "Active", - "name" : "Supporter Plus V2 - Annual", - "description" : "", - "effectiveStartDate" : "2013-03-11", - "effectiveEndDate" : "2099-01-12", - "TermType__c" : null, - "FrontendId__c" : "Yearly", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A104", - "externalIdSourceSystem" : "", - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "8a12892d85fc6df4018602451322287f", - "name" : "Contribution", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD0", "NZD0", "EUR0", "GBP0", "CAD0", "AUD0" ], - "pricing" : [ { - "currency" : "USD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Annual", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : true, - "taxCode" : "Contribution", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1015", - "ProductType__c" : "Contributor", - "triggerEvent" : "ContractEffective", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize upon invoicing", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Supporter Plus - Contribution", - "deferredRevenueAccountingCodeType" : "SalesRevenue", - "recognizedRevenueAccountingCode" : "Supporter Plus - Contribution", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "8a128ed885fc6ded01860228f7cb3d5f", - "name" : "Supporter Plus Annual Charge", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD120", "NZD160", "EUR95", "GBP95", "CAD120", "AUD160" ], - "pricing" : [ { - "currency" : "USD", - "price" : 120.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 160.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 95.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 95.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 120.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 160.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Annual", - "billingPeriodAlignment" : "AlignToTermStart", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : true, - "taxCode" : "Supporter Plus Global Tax", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1015", - "ProductType__c" : "Supporter Plus", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Supporter Plus", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Supporter Plus", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - } ], - "productFeatures" : [ ] - }, { - "id" : "2c92a0fe6619b4b901661aaf826435de", - "sku" : "ABC-00000030", - "name" : "Guardian Weekly - ROW", - "description" : "", - "category" : null, - "effectiveStartDate" : "2018-09-19", - "effectiveEndDate" : "2099-10-01", - "productNumber" : null, - "allowFeatureChanges" : false, - "ProductEnabled__c" : "True", - "Entitlements__c" : null, - "AcquisitionProfile__c" : "Paid", - "ProductType__c" : "Guardian Weekly", - "ProductLevel__c" : null, - "Tier__c" : null, - "productRatePlans" : [ { - "id" : "2c92a0ff79ac64e30179ae45669b3a83", - "status" : "Active", - "name" : "GW Oct 18 - Monthly - ROW", - "description" : "", - "effectiveStartDate" : "2018-09-19", - "effectiveEndDate" : "2099-09-19", - "TermType__c" : null, - "FrontendId__c" : "Monthly", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A101", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0ff79ac64e30179ae4566cb3a86", - "name" : "GW Oct 18 - Monthly - ROW", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD30", "GBP24.8" ], - "pricing" : [ { - "currency" : "USD", - "price" : 30.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 24.800000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0ff67cebd140167f0a2f66a12eb", - "status" : "Active", - "name" : "GW GIFT Oct 18 - 1 Year - ROW", - "description" : "", - "effectiveStartDate" : "2018-09-19", - "effectiveEndDate" : "2099-09-19", - "TermType__c" : null, - "FrontendId__c" : "OneYear", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A108", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0ff67cebd140167f0a2f68912ed", - "name" : "GW GIFT Oct 18 - 1 Year - ROW", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD360", "NZD530", "EUR270", "GBP297.6", "CAD345", "AUD424" ], - "pricing" : [ { - "currency" : "USD", - "price" : 360.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 530.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 270.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 297.600000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 345.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 424.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 1, - "upToPeriodsType" : "Billing_Periods", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Annual", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly Gift", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly Gift", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fe6619b4b601661ab300222651", - "status" : "Active", - "name" : "GW Oct 18 - Annual - ROW", - "description" : "", - "effectiveStartDate" : "2018-09-19", - "effectiveEndDate" : "2099-09-19", - "TermType__c" : null, - "FrontendId__c" : "Yearly", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A104", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fe6619b4b601661ab3002f2653", - "name" : "GW Oct 18 - Annual - ROW", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD360", "NZD530", "EUR270", "GBP297.6", "CAD345", "AUD424" ], - "pricing" : [ { - "currency" : "USD", - "price" : 360.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 530.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 270.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 297.600000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 345.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 424.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Annual", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0086619bf8901661ab545f51b21", - "status" : "Active", - "name" : "GW Oct 18 - Six for Six - ROW", - "description" : "", - "effectiveStartDate" : "2018-09-19", - "effectiveEndDate" : "2099-09-19", - "TermType__c" : null, - "FrontendId__c" : "SixWeeks", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A101", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0086619bf8901661ab546091b23", - "name" : "GW Oct 18 - First 6 issues - ROW", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD6", "NZD6", "EUR6", "GBP6", "CAD6", "AUD6" ], - "pricing" : [ { - "currency" : "USD", - "price" : 6.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 6.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 6.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 6.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 6.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 6.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 1, - "upToPeriodsType" : "Billing_Periods", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Specific_Weeks", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : 6, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0086619bf8901661ab02752722f", - "status" : "Active", - "name" : "GW Oct 18 - Quarterly - ROW", - "description" : "", - "effectiveStartDate" : "2018-09-19", - "effectiveEndDate" : "2099-09-19", - "TermType__c" : null, - "FrontendId__c" : "Quarterly", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A102", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0ff6619bf8b01661ab2d0396eb2", - "name" : "GW Oct 18 - Quarterly - ROW", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD90", "NZD132.5", "EUR67.5", "GBP74.4", "CAD86.25", "AUD106" ], - "pricing" : [ { - "currency" : "USD", - "price" : 90.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 132.500000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 67.500000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 74.400000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 86.250000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 106.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Quarter", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0076dd9892e016df8503e7c6c48", - "status" : "Active", - "name" : "GW GIFT Oct 18 - 3 Month - ROW", - "description" : "", - "effectiveStartDate" : "2018-09-19", - "effectiveEndDate" : "2099-09-19", - "TermType__c" : null, - "FrontendId__c" : "ThreeMonths", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A106", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0076dd9892e016df8503e936c4a", - "name" : "GW GIFT Oct 18 - 3 Month - ROW", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD90", "NZD132.5", "EUR67.5", "GBP74.4", "CAD86.25", "AUD106" ], - "pricing" : [ { - "currency" : "USD", - "price" : 90.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 132.500000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 67.500000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 74.400000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 86.250000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 106.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 1, - "upToPeriodsType" : "Billing_Periods", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Quarter", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly Gift", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly Gift", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - } ], - "productFeatures" : [ ] - }, { - "id" : "2c92a0ff6619bf8901661aa3247c4b1d", - "sku" : "ABC-00000029", - "name" : "Guardian Weekly - Domestic", - "description" : "", - "category" : null, - "effectiveStartDate" : "2018-09-18", - "effectiveEndDate" : "2099-10-01", - "productNumber" : null, - "allowFeatureChanges" : false, - "ProductEnabled__c" : "True", - "Entitlements__c" : null, - "AcquisitionProfile__c" : "Paid", - "ProductType__c" : "Guardian Weekly", - "ProductLevel__c" : null, - "Tier__c" : null, - "productRatePlans" : [ { - "id" : "2c92a0ff67cebd0d0167f0a1a834234e", - "status" : "Active", - "name" : "GW GIFT Oct 18 - 1 Year - Domestic", - "description" : "", - "effectiveStartDate" : "2018-09-19", - "effectiveEndDate" : "2099-09-19", - "TermType__c" : null, - "FrontendId__c" : "OneYear", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A108", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0ff67cebd0d0167f0a1a85b2350", - "name" : "GW GIFT Oct 18 - 1 Year - Domestic", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD330", "NZD546", "EUR282", "GBP165", "CAD360", "AUD432" ], - "pricing" : [ { - "currency" : "USD", - "price" : 330.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 546.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 282.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 165.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 360.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 432.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 1, - "upToPeriodsType" : "Billing_Periods", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Annual", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly Gift", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly Gift", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fe6619b4b901661aa8e66c1692", - "status" : "Active", - "name" : "GW Oct 18 - Annual - Domestic", - "description" : "", - "effectiveStartDate" : "2018-09-19", - "effectiveEndDate" : "2099-09-19", - "TermType__c" : null, - "FrontendId__c" : "Yearly", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A104", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fe6619b4b901661aa8e6811695", - "name" : "GW Oct 18 - Annual - Domestic", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD330", "NZD546", "EUR282", "GBP165", "CAD360", "AUD432" ], - "pricing" : [ { - "currency" : "USD", - "price" : 330.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 546.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 282.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 165.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 360.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 432.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Annual", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fe6619b4b301661aa494392ee2", - "status" : "Active", - "name" : "GW Oct 18 - Quarterly - Domestic", - "description" : "", - "effectiveStartDate" : "2018-09-19", - "effectiveEndDate" : "2099-09-19", - "TermType__c" : null, - "FrontendId__c" : "Quarterly", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A102", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fe6619b4b601661aa8b74e623f", - "name" : "GW Oct 18 - Quarterly - Domestic", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD82.5", "NZD136.5", "EUR70.5", "GBP41.25", "CAD90", "AUD108" ], - "pricing" : [ { - "currency" : "USD", - "price" : 82.500000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 136.500000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 70.500000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 41.250000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 90.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 108.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Quarter", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fd79ac64b00179ae3f9d474960", - "status" : "Active", - "name" : "GW Oct 18 - Monthly - Domestic", - "description" : "", - "effectiveStartDate" : "2018-09-19", - "effectiveEndDate" : "2099-09-19", - "TermType__c" : null, - "FrontendId__c" : "Monthly", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A101", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fd79ac64b00179ae3f9d704962", - "name" : "GW Oct 18 - Monthly - Domestic", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD27.5", "NZD45.5", "EUR23.5", "GBP13.75", "CAD30", "AUD36" ], - "pricing" : [ { - "currency" : "USD", - "price" : 27.500000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 45.500000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 23.500000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 13.750000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 30.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 36.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a00e6dd988e2016df85387417498", - "status" : "Active", - "name" : "GW GIFT Oct 18 - 3 Month - Domestic", - "description" : "", - "effectiveStartDate" : "2018-09-19", - "effectiveEndDate" : "2099-09-19", - "TermType__c" : null, - "FrontendId__c" : "ThreeMonths", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A106", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a00e6dd988e2016df853875d74c6", - "name" : "GW GIFT Oct 18 - 3 Month - Domestic", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD82.5", "NZD136.5", "EUR70.5", "GBP41.25", "CAD90", "AUD108" ], - "pricing" : [ { - "currency" : "USD", - "price" : 82.500000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 136.500000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 70.500000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 41.250000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 90.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 108.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 1, - "upToPeriodsType" : "Billing_Periods", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Quarter", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly Gift", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly Gift", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0086619bf8901661aaac94257fe", - "status" : "Active", - "name" : "GW Oct 18 - Six for Six - Domestic", - "description" : "", - "effectiveStartDate" : "2018-09-19", - "effectiveEndDate" : "2099-09-19", - "TermType__c" : null, - "FrontendId__c" : "SixWeeks", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A101", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0086619bf8901661aaac95d5800", - "name" : "GW Oct 18 - First 6 issues - Domestic", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD6", "NZD6", "EUR6", "GBP6", "CAD6", "AUD6" ], - "pricing" : [ { - "currency" : "USD", - "price" : 6.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 6.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 6.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 6.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 6.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 6.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 1, - "upToPeriodsType" : "Billing_Periods", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Specific_Weeks", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : 6, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - } ], - "productFeatures" : [ ] - }, { - "id" : "2c92a0fb4edd70c8014edeaa4ddb21e7", - "sku" : "ABC-00000005", - "name" : "Digital Pack", - "description" : "The Guardian & Observer Digital Pack gives you 7-day access to the Guardian & Observer daily edition for iPad, Android tablet and Kindle Fire as well as premium tier access to the iOS and Android live news apps.", - "category" : null, - "effectiveStartDate" : "2013-02-16", - "effectiveEndDate" : "2099-02-03", - "productNumber" : null, - "allowFeatureChanges" : false, - "ProductEnabled__c" : "True", - "Entitlements__c" : null, - "AcquisitionProfile__c" : "Paid", - "ProductType__c" : "Digital Pack", - "ProductLevel__c" : null, - "Tier__c" : null, - "productRatePlans" : [ { - "id" : "2c92a0ff73add07f0173b99f14390afc", - "status" : "Active", - "name" : "Digital Subscription Three Month Fixed - Deprecated", - "description" : "", - "effectiveStartDate" : "2020-08-01", - "effectiveEndDate" : "2099-01-01", - "TermType__c" : null, - "FrontendId__c" : "Three Month", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A102", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0ff73add07f0173b9a80a584466", - "name" : "Digital Subscription Three Month Fixed", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD60", "NZD63", "EUR45", "GBP36", "CAD63", "AUD63" ], - "pricing" : [ { - "currency" : "USD", - "price" : 60.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 63.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 45.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 36.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 63.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 63.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Quarter", - "billingPeriodAlignment" : "AlignToTermStart", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Digital Pack Global Tax", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1070", - "ProductType__c" : "Digital Pack", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Digital Subscription Gift Rule", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Digital Pack", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Digital Pack", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fb4edd70c8014edeaa4eae220a", - "status" : "Active", - "name" : "Digital Pack Monthly", - "description" : "", - "effectiveStartDate" : "2013-03-11", - "effectiveEndDate" : "2099-01-12", - "TermType__c" : null, - "FrontendId__c" : "Monthly", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A101", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fb4edd70c9014edeaa50342192", - "name" : "Digital Pack Monthly", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD19.99", "NZD23.5", "EUR14.99", "GBP11.99", "CAD21.95", "AUD21.5" ], - "pricing" : [ { - "currency" : "USD", - "price" : 19.990000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 23.500000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 14.990000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 11.990000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 21.950000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 21.500000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Digital Pack Global Tax", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1070", - "ProductType__c" : "Digital Pack", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Digital Pack", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Digital Pack", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fb4edd70c8014edeaa4e972204", - "status" : "Active", - "name" : "Digital Pack Annual", - "description" : "", - "effectiveStartDate" : "2013-03-11", - "effectiveEndDate" : "2099-01-12", - "TermType__c" : null, - "FrontendId__c" : "Yearly", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A104", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fb4edd70c9014edeaa5001218c", - "name" : "Digital Pack Annual", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD199", "NZD235", "EUR149", "GBP119", "CAD219", "AUD215" ], - "pricing" : [ { - "currency" : "USD", - "price" : 199.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 235.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 149.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 119.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 219.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 215.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Annual", - "billingPeriodAlignment" : "AlignToTermStart", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : true, - "taxCode" : "Digital Pack Global Tax", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1070", - "ProductType__c" : "Digital Pack", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Digital Pack", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Digital Pack", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fb4edd70c8014edeaa4e8521fe", - "status" : "Active", - "name" : "Digital Pack Quarterly", - "description" : "", - "effectiveStartDate" : "2013-03-11", - "effectiveEndDate" : "2099-01-12", - "TermType__c" : null, - "FrontendId__c" : "Quarterly", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A102", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fb4edd70c9014edeaa4fd42186", - "name" : "Digital Pack Quarterly", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD59.95", "NZD70.5", "EUR44.95", "GBP35.95", "CAD65.85", "AUD64.5" ], - "pricing" : [ { - "currency" : "USD", - "price" : 59.950000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 70.500000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 44.950000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 35.950000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 65.850000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 64.500000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Quarter", - "billingPeriodAlignment" : "AlignToTermStart", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Digital Pack Global Tax", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1070", - "ProductType__c" : "Digital Pack", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Digital Pack", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Digital Pack", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a00d779932ef0177a65430d30ac1", - "status" : "Active", - "name" : "Digital Subscription Three Month Fixed - One Time Charge", - "description" : "", - "effectiveStartDate" : "2020-08-01", - "effectiveEndDate" : "2099-01-01", - "TermType__c" : null, - "FrontendId__c" : "Three Month", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A106", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a00f779933030177a65881490325", - "name" : "Digital Subscription Three Month Fixed - One Time Charge", - "type" : "OneTime", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD60", "NZD63", "EUR45", "GBP36", "CAD63", "AUD63" ], - "pricing" : [ { - "currency" : "USD", - "price" : 60.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 63.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 45.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 36.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 63.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 63.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "One_Time", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : null, - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : null, - "billingPeriodAlignment" : null, - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : null, - "taxable" : true, - "taxCode" : "Digital Pack Global Tax", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1070", - "ProductType__c" : "Digital Pack", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Digital Subscription Gift Rule", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Digital Pack", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Digital Pack", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a00d71c96bac0171df3a5622740f", - "status" : "Active", - "name" : "Corporate Digital Subscription", - "description" : "", - "effectiveStartDate" : "2020-01-01", - "effectiveEndDate" : "2050-01-01", - "TermType__c" : "TERMED", - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A100", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a00871c96ba30171df3b481931a0", - "name" : "Corporate Digital Subscription", - "type" : "OneTime", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD0", "NZD0", "EUR0", "GBP0", "CAD0", "AUD0" ], - "pricing" : [ { - "currency" : "USD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 0.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "One_Time", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : null, - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : null, - "billingPeriodAlignment" : null, - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : null, - "taxable" : false, - "taxCode" : "", - "taxMode" : null, - "ProductCode__c" : "P1070", - "ProductType__c" : "Digital Pack", - "triggerEvent" : "ContractEffective", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize upon invoicing", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Digital Pack", - "deferredRevenueAccountingCodeType" : "SalesRevenue", - "recognizedRevenueAccountingCode" : "Digital Pack", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a00c77992ba70177a6596f710265", - "status" : "Active", - "name" : "Digital Subscription One Year Fixed - One Time Charge", - "description" : "", - "effectiveStartDate" : "2020-08-01", - "effectiveEndDate" : "2099-01-01", - "TermType__c" : null, - "FrontendId__c" : "One Year", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A108", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a011779932fd0177a670f43102aa", - "name" : "Digital Subscription One Year Fixed - One Time Charge", - "type" : "OneTime", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD165", "NZD175", "EUR125", "GBP99", "CAD175", "AUD175" ], - "pricing" : [ { - "currency" : "USD", - "price" : 165.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 175.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 125.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 99.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 175.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 175.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "One_Time", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : null, - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : null, - "billingPeriodAlignment" : null, - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : null, - "taxable" : true, - "taxCode" : "Digital Pack Global Tax", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1070", - "ProductType__c" : "Digital Pack", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Digital Subscription Gift Rule", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Digital Pack", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Digital Pack", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a00773adc09d0173b99e4ded7f45", - "status" : "Active", - "name" : "Digital Subscription One Year Fixed - Deprecated", - "description" : "", - "effectiveStartDate" : "2020-08-01", - "effectiveEndDate" : "2099-01-01", - "TermType__c" : null, - "FrontendId__c" : "One Year", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A104", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a00d73add0220173b9a387c62aec", - "name" : "Digital Subscription One Year Fixed", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD165", "NZD175", "EUR125", "GBP99", "CAD175", "AUD175" ], - "pricing" : [ { - "currency" : "USD", - "price" : 165.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 175.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 125.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 99.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 175.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 175.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Annual", - "billingPeriodAlignment" : "AlignToTermStart", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Digital Pack Global Tax", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1070", - "ProductType__c" : "Digital Pack", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Digital Subscription Gift Rule", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Digital Pack", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Digital Pack", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - } ], - "productFeatures" : [ ] - }, { - "id" : "2c92a00870ec598001710740c3d92eab", - "sku" : "ABC-00000031", - "name" : "Newspaper Digital Voucher", - "description" : "Newspaper Digital Voucher", - "category" : null, - "effectiveStartDate" : "2007-01-01", - "effectiveEndDate" : "2099-07-12", - "productNumber" : null, - "allowFeatureChanges" : false, - "ProductEnabled__c" : "True", - "Entitlements__c" : null, - "AcquisitionProfile__c" : "Paid", - "ProductType__c" : "Newspaper - Digital Voucher", - "ProductLevel__c" : null, - "Tier__c" : null, - "productRatePlans" : [ { - "id" : "2c92a00870ec598001710740d3d03035", - "status" : "Active", - "name" : "Everyday+", - "description" : "Guardian and Observer papers, plus The Guardian Daily and premium access to the Guardian Live app.", - "effectiveStartDate" : "2007-01-01", - "effectiveEndDate" : "2099-07-12", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : "34", - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A109", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a00870ec598001710740d4143037", - "name" : "Digipack", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP2" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 2.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "EVERYDAY+ Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1299", - "ProductType__c" : "Digital Pack", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740d4b8304f", - "name" : "Saturday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP10.95" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 10.950000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "EVERYDAY+ Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1222", - "ProductType__c" : "Print Saturday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher SAT", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher SAT", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740d54f3069", - "name" : "Tuesday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP7.82" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 7.820000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "EVERYDAY+ Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1212", - "ProductType__c" : "Print Tuesday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher M-F", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher M-F", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740d5fd3073", - "name" : "Monday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP7.82" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 7.820000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "EVERYDAY+ Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1212", - "ProductType__c" : "Print Monday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher M-F", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher M-F", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740d691307c", - "name" : "Thursday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP7.82" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 7.820000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "EVERYDAY+ Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1212", - "ProductType__c" : "Print Thursday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher M-F", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher M-F", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740d7493084", - "name" : "Wednesday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP7.82" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 7.820000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "EVERYDAY+ Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1212", - "ProductType__c" : "Print Wednesday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher M-F", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher M-F", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740d7e2308d", - "name" : "Sunday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP10.94" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 10.940000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "EVERYDAY+ Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1232", - "ProductType__c" : "Print Sunday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher SUN", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher SUN", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740d8873096", - "name" : "Friday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP7.82" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 7.820000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "EVERYDAY+ Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1212", - "ProductType__c" : "Print Friday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher M-F", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher M-F", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a00870ec598001710740ca532f69", - "status" : "Active", - "name" : "Sixday", - "description" : "Guardian papers", - "effectiveStartDate" : "2007-01-01", - "effectiveEndDate" : "2099-07-12", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : "30", - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A115", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a00870ec598001710740cc9b2f88", - "name" : "Thursday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP8.44" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 8.440000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Newspaper Digital Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1212", - "ProductType__c" : "Print Thursday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher M-F", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher M-F", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740cd012f90", - "name" : "Wednesday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP8.44" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 8.440000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Newspaper Digital Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1212", - "ProductType__c" : "Print Wednesday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher M-F", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher M-F", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740cd6e2fa2", - "name" : "Saturday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP11.79" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 11.790000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Newspaper Digital Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1222", - "ProductType__c" : "Print Saturday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher SAT", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher SAT", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740cb4e2f6b", - "name" : "Friday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP8.44" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 8.440000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Newspaper Digital Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1212", - "ProductType__c" : "Print Friday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher M-F", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher M-F", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740cbb32f77", - "name" : "Monday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP8.44" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 8.440000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Newspaper Digital Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1212", - "ProductType__c" : "Print Monday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher M-F", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher M-F", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740cc2c2f80", - "name" : "Tuesday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP8.44" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 8.440000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Newspaper Digital Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1212", - "ProductType__c" : "Print Tuesday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher M-F", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher M-F", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a00870ec598001710740c78d2f13", - "status" : "Active", - "name" : "Everyday", - "description" : "Guardian and Observer papers", - "effectiveStartDate" : "2007-01-01", - "effectiveEndDate" : "2099-07-12", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : "34", - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A114", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a00870ec598001710740c8c42f40", - "name" : "Thursday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP7.82" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 7.820000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Newspaper Digital Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1212", - "ProductType__c" : "Print Thursday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher M-F", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher M-F", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740c91d2f4d", - "name" : "Friday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP7.82" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 7.820000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Newspaper Digital Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1212", - "ProductType__c" : "Print Friday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher M-F", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher M-F", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740c7b82f1c", - "name" : "Monday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP7.82" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 7.820000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Newspaper Digital Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1212", - "ProductType__c" : "Print Monday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher M-F", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher M-F", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740c80f2f26", - "name" : "Tuesday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP7.82" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 7.820000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Newspaper Digital Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1212", - "ProductType__c" : "Print Tuesday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher M-F", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher M-F", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740c8652f37", - "name" : "Saturday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP10.95" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 10.950000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Newspaper Digital Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1222", - "ProductType__c" : "Print Saturday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher SAT", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher SAT", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740c9802f59", - "name" : "Wednesday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP7.82" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 7.820000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Newspaper Digital Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1212", - "ProductType__c" : "Print Wednesday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher M-F", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher M-F", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740c9d72f61", - "name" : "Sunday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP10.94" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 10.940000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Newspaper Digital Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1232", - "ProductType__c" : "Print Sunday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher SUN", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher SUN", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a00870ec598001710740d24b3022", - "status" : "Active", - "name" : "Weekend", - "description" : "Saturday Guardian and Observer papers", - "effectiveStartDate" : "2007-01-01", - "effectiveEndDate" : "2099-07-12", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : "24", - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A119", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a00870ec598001710740d28e3024", - "name" : "Saturday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP12.5" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 12.500000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Newspaper Digital Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1222", - "ProductType__c" : "Print Saturday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher SAT", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher SAT", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740d325302c", - "name" : "Sunday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP12.49" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 12.490000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Newspaper Digital Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1232", - "ProductType__c" : "Print Sunday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher SUN", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher SUN", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a00870ec598001710740c4582ead", - "status" : "Active", - "name" : "Sixday+", - "description" : "Guardian papers, plus The Guardian Daily and premium access to the Guardian Live app.", - "effectiveStartDate" : "2007-01-01", - "effectiveEndDate" : "2099-07-12", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : "31", - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A110", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a00870ec598001710740c48e2eaf", - "name" : "Thursday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP8.44" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 8.440000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "SIXDAY+ Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1212", - "ProductType__c" : "Print Thursday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher M-F", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher M-F", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740c4dc2eb7", - "name" : "Wednesday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP8.44" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 8.440000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "SIXDAY+ Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1212", - "ProductType__c" : "Print Wednesday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher M-F", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher M-F", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740c5192ebf", - "name" : "Friday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP8.44" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 8.440000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "SIXDAY+ Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1212", - "ProductType__c" : "Print Friday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher M-F", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher M-F", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740c55a2ec7", - "name" : "Saturday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP11.79" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 11.790000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "SIXDAY+ Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1222", - "ProductType__c" : "Print Saturday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher SAT", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher SAT", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740c5962ecf", - "name" : "Monday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP8.44" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 8.440000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "SIXDAY+ Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1212", - "ProductType__c" : "Print Monday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher M-F", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher M-F", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740c5cf2ed7", - "name" : "Digipack", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP2" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 2.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "SIXDAY+ Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1299", - "ProductType__c" : "Digital Pack", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740c60f2edf", - "name" : "Tuesday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP8.44" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 8.440000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "SIXDAY+ Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1212", - "ProductType__c" : "Print Tuesday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher M-F", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher M-F", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a00870ec598001710740d0d83017", - "status" : "Active", - "name" : "Sunday", - "description" : "Observer paper", - "effectiveStartDate" : "2017-03-27", - "effectiveEndDate" : "2099-07-12", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : "15", - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A118", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a00870ec598001710740d1103019", - "name" : "Sunday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP13.99" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 13.990000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Newspaper Digital Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1232", - "ProductType__c" : "Print Sunday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher SUN", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher SUN", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a00870ec598001710740cf9e3004", - "status" : "Active", - "name" : "Sunday+", - "description" : "Observer paper, plus The Guardian Daily and premium access to the Guardian Live app.", - "effectiveStartDate" : "2007-01-01", - "effectiveEndDate" : "2099-07-12", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : "11", - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A112", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a00870ec598001710740cfda3006", - "name" : "Digipack", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP10" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 10.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "SUNDAY+ Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1299", - "ProductType__c" : "Digital Pack", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740d053300f", - "name" : "Sunday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP13.99" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 13.990000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "SUNDAY+ Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1232", - "ProductType__c" : "Print Sunday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher SUN", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher SUN", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a00870ec598001710740c6672ee7", - "status" : "Active", - "name" : "Weekend+", - "description" : "Saturday Guardian and Observer papers, plus The Guardian Daily and premium access to the Guardian Live app.", - "effectiveStartDate" : "2007-01-01", - "effectiveEndDate" : "2099-07-12", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : "19", - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A113", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a00870ec598001710740c6872ee9", - "name" : "Saturday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP12.5" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 12.500000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "WEEKEND+ Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1222", - "ProductType__c" : "Print Saturday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher SAT", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher SAT", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740c6ce2ef1", - "name" : "Digipack", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP9" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 9.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "WEEKEND+ Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1299", - "ProductType__c" : "Digital Pack", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740c7132efe", - "name" : "Sunday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP12.49" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 12.490000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "WEEKEND+ Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1232", - "ProductType__c" : "Print Sunday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher SUN", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher SUN", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a00870ec598001710740cdd02fbd", - "status" : "Active", - "name" : "Saturday", - "description" : "Saturday paper", - "effectiveStartDate" : "2018-03-14", - "effectiveEndDate" : "2099-07-12", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : "15", - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A117", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a00870ec598001710740ce042fcb", - "name" : "Saturday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP13.99" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 13.990000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Newspaper Digital Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1222", - "ProductType__c" : "Print Saturday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher SAT", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher SAT", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a00870ec598001710740ce702ff0", - "status" : "Active", - "name" : "Saturday+", - "description" : "Saturday paper, plus The Guardian Daily and premium access to the Guardian Live app.", - "effectiveStartDate" : "2018-03-14", - "effectiveEndDate" : "2099-07-12", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : "11", - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A111", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a00870ec598001710740cf1e2ffc", - "name" : "Saturday", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP13.99" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 13.990000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "SATURDAY+ Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1222", - "ProductType__c" : "Print Saturday", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher SAT", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher SAT", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - }, { - "id" : "2c92a00870ec598001710740cea02ff4", - "name" : "Digipack", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "GBP10" ], - "pricing" : [ { - "currency" : "GBP", - "price" : 10.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "SATURDAY+ Voucher", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1299", - "ProductType__c" : "Digital Pack", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Newspaper Digital Voucher", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Newspaper Digital Voucher", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - } ], - "productFeatures" : [ ] - }, { - "id" : "2c92a0fe5aacfabe015ad24bf6e15ff6", - "sku" : "ABC-00000028", - "name" : "Contributor", - "description" : "", - "category" : null, - "effectiveStartDate" : "2017-03-15", - "effectiveEndDate" : "2099-03-15", - "productNumber" : null, - "allowFeatureChanges" : false, - "ProductEnabled__c" : "True", - "Entitlements__c" : null, - "AcquisitionProfile__c" : "Paid", - "ProductType__c" : "Contribution", - "ProductLevel__c" : null, - "Tier__c" : null, - "productRatePlans" : [ { - "id" : "2c92a0fc5e1dc084015e37f58c200eea", - "status" : "Active", - "name" : "Annual Contribution", - "description" : "", - "effectiveStartDate" : "2017-03-15", - "effectiveEndDate" : "2099-03-15", - "TermType__c" : "TERMED", - "FrontendId__c" : "Annual", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A104", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fc5e1dc084015e37f58c7b0f34", - "name" : "Annual Contribution", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD60", "NZD60", "EUR60", "GBP60", "CAD5", "AUD100" ], - "pricing" : [ { - "currency" : "USD", - "price" : 60.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 60.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 60.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 60.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 5.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 100.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Annual", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : true, - "taxCode" : "Contribution", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1010", - "ProductType__c" : "Contributor", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize upon invoicing", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Contribution", - "deferredRevenueAccountingCodeType" : "SalesRevenue", - "recognizedRevenueAccountingCode" : "Contribution", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fc5aacfadd015ad24db4ff5e97", - "status" : "Active", - "name" : "Monthly Contribution", - "description" : "", - "effectiveStartDate" : "2017-03-15", - "effectiveEndDate" : "2099-03-15", - "TermType__c" : "TERMED", - "FrontendId__c" : "Monthly", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A101", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fc5aacfadd015ad250bf2c6d38", - "name" : "Monthly Contribution", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD5", "NZD5", "EUR5", "GBP5", "CAD5", "AUD10" ], - "pricing" : [ { - "currency" : "USD", - "price" : 5.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 5.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 5.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 5.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 5.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 10.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Month", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : true, - "taxCode" : "Contribution", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1010", - "ProductType__c" : "Contributor", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize upon invoicing", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Contribution", - "deferredRevenueAccountingCodeType" : "SalesRevenue", - "recognizedRevenueAccountingCode" : "Contribution", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - } ], - "productFeatures" : [ ] - }, { - "id" : "2c92a0fd57d0a9870157d73fa27c3de1", - "sku" : "ABC-00000017", - "name" : "Guardian Weekly Zone A", - "description" : "", - "category" : null, - "effectiveStartDate" : "1990-10-18", - "effectiveEndDate" : "2099-10-18", - "productNumber" : null, - "allowFeatureChanges" : false, - "ProductEnabled__c" : "True", - "Entitlements__c" : null, - "AcquisitionProfile__c" : "Paid", - "ProductType__c" : "Guardian Weekly", - "ProductLevel__c" : null, - "Tier__c" : null, - "productRatePlans" : [ { - "id" : "2c92a0ff5a6b5d77015a7fb38d201688", - "status" : "Active", - "name" : "Guardian Weekly 10% Discount", - "description" : "", - "effectiveStartDate" : "1991-01-01", - "effectiveEndDate" : "2099-01-01", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : null, - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A104", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0ff5a6b5d77015a7fb548381f4e", - "name" : "10% Discount", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "10% discount" ], - "pricing" : [ { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 10.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Annual", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : null, - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0ff5a5adca7015a5c51a69c7f2e", - "status" : "Active", - "name" : "Guardian Weekly 3 Years", - "description" : "", - "effectiveStartDate" : "1995-12-12", - "effectiveEndDate" : "2099-10-18", - "TermType__c" : "ONETERM", - "FrontendId__c" : "ThreeYears", - "Saving__c" : null, - "DefaultTerm__c" : "36", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A104", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0ff5a5adca7015a5c51a6ad7f30", - "name" : "Zone A 3 Years", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD720", "GBP360" ], - "pricing" : [ { - "currency" : "USD", - "price" : 720.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 360.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 1, - "upToPeriodsType" : "Billing_Periods", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Three_Years", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0ff5a5adca7015a5c4af5963efa", - "status" : "Active", - "name" : "Guardian Weekly 6 Months", - "description" : "", - "effectiveStartDate" : "1995-10-18", - "effectiveEndDate" : "2099-10-18", - "TermType__c" : null, - "FrontendId__c" : "SixMonths", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A103", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0ff5a5adca7015a5c4af5b63f01", - "name" : "Zone A 6 Months", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD120", "GBP60" ], - "pricing" : [ { - "currency" : "USD", - "price" : 120.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 60.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Semi_Annual", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0ff5a4b85e7015a4cf95d352a07", - "status" : "Active", - "name" : "Guardian Weekly 12 Issues", - "description" : "12 issues", - "effectiveStartDate" : "1995-11-13", - "effectiveEndDate" : "2099-02-14", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A102", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0ff5a4b85e7015a4cf95d472a09", - "name" : "Zone A 12 Issues", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD12", "GBP12" ], - "pricing" : [ { - "currency" : "USD", - "price" : 12.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 12.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 1, - "upToPeriodsType" : "Billing_Periods", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Specific_Weeks", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : 12, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "ContractEffective", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0ff59d9d540015a41a40b3e07d3", - "status" : "Active", - "name" : "Guardian Weekly 6 Issues", - "description" : "", - "effectiveStartDate" : "1995-02-13", - "effectiveEndDate" : "2099-02-14", - "TermType__c" : null, - "FrontendId__c" : "SixWeeks", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A101", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fe5a241e5a015a41f1c4b102c3", - "name" : "Zone A 6 Issues", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD6", "GBP6" ], - "pricing" : [ { - "currency" : "USD", - "price" : 6.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 6.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 1, - "upToPeriodsType" : "Billing_Periods", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Specific_Weeks", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : 6, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "ContractEffective", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0ff58bdf4eb0158f2ecc89c1034", - "status" : "Active", - "name" : "Guardian Weekly 1 Year", - "description" : "", - "effectiveStartDate" : "1995-12-12", - "effectiveEndDate" : "2099-10-18", - "TermType__c" : "ONETERM", - "FrontendId__c" : "OneYear", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A104", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0ff58bdf4eb0158f2ecc8ae1036", - "name" : "Zone A 1 Year", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD240", "GBP120" ], - "pricing" : [ { - "currency" : "USD", - "price" : 240.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 120.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 1, - "upToPeriodsType" : "Billing_Periods", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Annual", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0ff57d0a0b60157d741e722439a", - "status" : "Active", - "name" : "Guardian Weekly Annual", - "description" : "", - "effectiveStartDate" : "1995-10-18", - "effectiveEndDate" : "2099-10-18", - "TermType__c" : null, - "FrontendId__c" : "Yearly", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A104", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fd57d0a9870157d7510cfd66f0", - "name" : "Zone A Annual", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD240", "GBP120" ], - "pricing" : [ { - "currency" : "USD", - "price" : 240.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 120.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Annual", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fe5a6b4e98015a7fb648541d78", - "status" : "Active", - "name" : "Guardian Weekly 30% Discount", - "description" : "", - "effectiveStartDate" : "1991-01-01", - "effectiveEndDate" : "2099-01-01", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : null, - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A104", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fe5a6b4e98015a7fb648631d7a", - "name" : "30% Discount", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "30% discount" ], - "pricing" : [ { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 30.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Annual", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : null, - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fe5a6b4e98015a7fb59d9407a6", - "status" : "Active", - "name" : "Guardian Weekly 25% Discount", - "description" : "", - "effectiveStartDate" : "1991-01-01", - "effectiveEndDate" : "2099-01-01", - "TermType__c" : null, - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : null, - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A104", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fe5a6b4e98015a7fb59db107a8", - "name" : "25% Discount", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "25% discount" ], - "pricing" : [ { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 25.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Annual", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : null, - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fe5a5ad349015a5c4e3f87184c", - "status" : "Active", - "name" : "Guardian Weekly 6 Months Only", - "description" : "", - "effectiveStartDate" : "1995-12-12", - "effectiveEndDate" : "2099-10-18", - "TermType__c" : "ONETERM", - "FrontendId__c" : "SixMonthsOnly", - "Saving__c" : null, - "DefaultTerm__c" : "6", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A103", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fe5a5ad349015a5c4e3f99184f", - "name" : "Zone A 6 Months", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD120", "GBP60" ], - "pricing" : [ { - "currency" : "USD", - "price" : 120.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 60.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 6, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Semi_Annual", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fe5a5ad343015a5c50b4eb2d72", - "status" : "Active", - "name" : "Guardian Weekly 2 Years", - "description" : "", - "effectiveStartDate" : "1995-12-12", - "effectiveEndDate" : "2099-10-18", - "TermType__c" : "ONETERM", - "FrontendId__c" : "TwoYears", - "Saving__c" : null, - "DefaultTerm__c" : "24", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A104", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fe5a5ad343015a5c50b4fc2d74", - "name" : "Zone A 2 Years", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD480", "GBP240" ], - "pricing" : [ { - "currency" : "USD", - "price" : 480.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 240.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 1, - "upToPeriodsType" : "Billing_Periods", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Two_Years", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fd57d0a9870157d7412f19424f", - "status" : "Active", - "name" : "Guardian Weekly Quarterly", - "description" : "", - "effectiveStartDate" : "1995-10-18", - "effectiveEndDate" : "2099-10-18", - "TermType__c" : null, - "FrontendId__c" : "Quarterly", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A102", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0ff57d0a0b50157d752a0077624", - "name" : "Zone A Quarterly", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD60", "GBP30" ], - "pricing" : [ { - "currency" : "USD", - "price" : 60.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 30.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Quarter", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - } ], - "productFeatures" : [ ] - }, { - "id" : "2c92a0fe57d0a0c40157d74240d35541", - "sku" : "ABC-00000019", - "name" : "Guardian Weekly Zone B", - "description" : "", - "category" : null, - "effectiveStartDate" : "1996-01-01", - "effectiveEndDate" : "2099-10-18", - "productNumber" : null, - "allowFeatureChanges" : false, - "ProductEnabled__c" : "True", - "Entitlements__c" : null, - "AcquisitionProfile__c" : "Paid", - "ProductType__c" : "Guardian Weekly", - "ProductLevel__c" : null, - "Tier__c" : null, - "productRatePlans" : [ { - "id" : "2c92a0fe5a6b4e98015a8026d9d30b32", - "status" : "Active", - "name" : "Guardian Weekly 10% Discount", - "description" : "", - "effectiveStartDate" : "1996-10-18", - "effectiveEndDate" : "2099-10-18", - "TermType__c" : "TERMED", - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A104", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fe5a6b4e98015a8026d9e70b34", - "name" : "10% Discount", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "0% discount", "0% discount", "0% discount", "10% discount", "0% discount", "0% discount" ], - "pricing" : [ { - "currency" : "USD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 10.000000000, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Annual", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : null, - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0ff5a6b5d77015a80298bfa6e7c", - "status" : "Active", - "name" : "Guardian Weekly 30% Discount", - "description" : "", - "effectiveStartDate" : "1996-10-18", - "effectiveEndDate" : "2099-10-18", - "TermType__c" : "TERMED", - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A104", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0ff5a6b5d77015a80298c0d6e7f", - "name" : "30% Discount", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "0% discount", "0% discount", "0% discount", "30% discount", "0% discount", "0% discount" ], - "pricing" : [ { - "currency" : "USD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 30.000000000, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Annual", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : null, - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0ff5a6b5d74015a8028b15f4db4", - "status" : "Active", - "name" : "Guardian Weekly 25% Discount", - "description" : "", - "effectiveStartDate" : "1996-10-18", - "effectiveEndDate" : "2099-10-18", - "TermType__c" : "TERMED", - "FrontendId__c" : null, - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A104", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0ff5a6b5d74015a8028b16f4db6", - "name" : "25% Discount", - "type" : "Recurring", - "model" : "DiscountPercentage", - "uom" : null, - "pricingSummary" : [ "0% discount", "0% discount", "0% discount", "25% discount", "0% discount", "0% discount" ], - "pricing" : [ { - "currency" : "USD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 25.000000000, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : null, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : 0.000000000, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : "ONETIMERECURRINGUSAGE", - "discountLevel" : "subscription", - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : null, - "specificListPriceBase" : null, - "billingTiming" : null, - "ratingGroup" : null, - "billingPeriod" : "Annual", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : false, - "taxable" : false, - "taxCode" : null, - "taxMode" : null, - "ProductCode__c" : "P0000", - "ProductType__c" : null, - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : null, - "useDiscountSpecificAccountingCode" : false, - "financeInformation" : { - "deferredRevenueAccountingCode" : null, - "deferredRevenueAccountingCodeType" : null, - "recognizedRevenueAccountingCode" : null, - "recognizedRevenueAccountingCodeType" : null, - "accountsReceivableAccountingCode" : null, - "accountsReceivableAccountingCodeType" : null - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0ff5a5adca9015a611f77db4431", - "status" : "Active", - "name" : "Guardian Weekly 3 Years", - "description" : "", - "effectiveStartDate" : "1996-10-18", - "effectiveEndDate" : "2099-10-18", - "TermType__c" : "ONETERM", - "FrontendId__c" : "ThreeYears", - "Saving__c" : null, - "DefaultTerm__c" : "36", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A104", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0ff5a5adca9015a611f77eb4436", - "name" : "Zone B 3 Years", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD720", "NZD1176", "EUR588", "GBP456", "CAD720", "AUD936" ], - "pricing" : [ { - "currency" : "USD", - "price" : 720.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 1176.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 588.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 456.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 720.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 936.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 1, - "upToPeriodsType" : "Billing_Periods", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Three_Years", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0ff5a5adca7015a611d44e01395", - "status" : "Active", - "name" : "Guardian Weekly 2 Years", - "description" : "", - "effectiveStartDate" : "1996-10-18", - "effectiveEndDate" : "2099-10-18", - "TermType__c" : "ONETERM", - "FrontendId__c" : "TwoYears", - "Saving__c" : null, - "DefaultTerm__c" : "24", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A104", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0ff5a5adca7015a611d44f21397", - "name" : "Zone B 2 Years", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD480", "NZD784", "EUR392", "GBP304", "CAD480", "AUD624" ], - "pricing" : [ { - "currency" : "USD", - "price" : 480.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 784.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 392.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 304.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 480.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 624.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 1, - "upToPeriodsType" : "Billing_Periods", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Two_Years", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fe5a5ad349015a5c61d6e05d8d", - "status" : "Active", - "name" : "Guardian Weekly 6 Months Only", - "description" : "", - "effectiveStartDate" : "1996-10-18", - "effectiveEndDate" : "2099-10-18", - "TermType__c" : "ONETERM", - "FrontendId__c" : "SixMonthsOnly", - "Saving__c" : null, - "DefaultTerm__c" : "6", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A103", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fe5a5ad349015a5c61d6f05d94", - "name" : "Zone B 6 Months", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD120", "NZD196", "EUR98", "GBP76", "CAD120", "AUD156" ], - "pricing" : [ { - "currency" : "USD", - "price" : 120.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 196.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 98.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 76.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 120.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 156.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 6, - "upToPeriodsType" : "Months", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Semi_Annual", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fe5a5ad344015a5c67b1144250", - "status" : "Active", - "name" : "Guardian Weekly 6 Issues", - "description" : "", - "effectiveStartDate" : "1996-10-18", - "effectiveEndDate" : "2099-10-18", - "TermType__c" : "ONETERM", - "FrontendId__c" : "SixWeeks", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A101", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fe5a5ad344015a5c67b1234254", - "name" : "Zone B 6 Issues", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD6", "NZD6", "EUR6", "GBP6", "CAD6", "AUD6" ], - "pricing" : [ { - "currency" : "USD", - "price" : 6.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 6.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 6.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 6.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 6.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 6.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 1, - "upToPeriodsType" : "Billing_Periods", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Specific_Weeks", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : 6, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "ContractEffective", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fe57d0a0c40157d74241005544", - "status" : "Active", - "name" : "Guardian Weekly Quarterly", - "description" : "", - "effectiveStartDate" : "1996-01-01", - "effectiveEndDate" : "2099-10-18", - "TermType__c" : "TERMED", - "FrontendId__c" : "Quarterly", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A102", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fd57d0a9230157d75a5e377221", - "name" : "Zone B Quarterly", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD60", "NZD98", "EUR49", "GBP38", "CAD60", "AUD78" ], - "pricing" : [ { - "currency" : "USD", - "price" : 60.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 98.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 49.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 38.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 60.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 78.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Quarter", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fe57d0a0c40157d74240de5543", - "status" : "Active", - "name" : "Guardian Weekly Annual", - "description" : "", - "effectiveStartDate" : "1996-10-18", - "effectiveEndDate" : "2099-10-18", - "TermType__c" : "TERMED", - "FrontendId__c" : "Yearly", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A104", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0ff57d0a0b50157d759315607c5", - "name" : "Zone B Annual", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD240", "NZD392", "EUR196", "GBP152", "CAD240", "AUD312" ], - "pricing" : [ { - "currency" : "USD", - "price" : 240.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 392.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 196.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 152.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 240.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 312.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Annual", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fd5a5adc8b015a5c690d0d1ec6", - "status" : "Active", - "name" : "Guardian Weekly 12 Issues", - "description" : "", - "effectiveStartDate" : "1996-10-18", - "effectiveEndDate" : "2099-10-18", - "TermType__c" : "ONETERM", - "FrontendId__c" : "TwelveWeeks", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A102", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fd5a5adc8b015a5c690d261ec8", - "name" : "Zone B 12 Issues", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD12", "NZD12", "EUR12", "GBP12", "CAD12", "AUD12" ], - "pricing" : [ { - "currency" : "USD", - "price" : 12.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 12.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 12.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 12.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 12.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 12.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 1, - "upToPeriodsType" : "Billing_Periods", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Specific_Weeks", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : 12, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "ContractEffective", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fd5a5adc8b015a5c65074b7c41", - "status" : "Active", - "name" : "Guardian Weekly 6 Months", - "description" : "", - "effectiveStartDate" : "1996-10-18", - "effectiveEndDate" : "2099-10-18", - "TermType__c" : "TERMED", - "FrontendId__c" : "SixMonths", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A103", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fd5a5adc8b015a5c65075e7c43", - "name" : "Zone B 6 Months", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD120", "NZD196", "EUR98", "GBP76", "CAD120", "AUD156" ], - "pricing" : [ { - "currency" : "USD", - "price" : 120.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 196.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 98.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 76.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 120.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 156.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Subscription_End", - "upToPeriods" : null, - "upToPeriodsType" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Semi_Annual", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - }, { - "id" : "2c92a0fd58cf57000158f30ae6d06f2a", - "status" : "Active", - "name" : "Guardian Weekly 1 Year", - "description" : "", - "effectiveStartDate" : "1996-01-01", - "effectiveEndDate" : "2099-10-18", - "TermType__c" : "ONETERM", - "FrontendId__c" : "OneYear", - "Saving__c" : null, - "DefaultTerm__c" : "12", - "RatePlanType__c" : "Base", - "PromotionCode__c" : null, - "AnalysisCode__c" : "A104", - "externalIdSourceSystem" : null, - "externallyManagedPlanIds" : [ ], - "productRatePlanCharges" : [ { - "id" : "2c92a0fd58cf57000158f30ae6e26f2c", - "name" : "Zone B 1 Year", - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "pricingSummary" : [ "USD240", "NZD392", "EUR196", "GBP152", "CAD240", "AUD312" ], - "pricing" : [ { - "currency" : "USD", - "price" : 240.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "NZD", - "price" : 392.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "EUR", - "price" : 196.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "GBP", - "price" : 152.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "CAD", - "price" : 240.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - }, { - "currency" : "AUD", - "price" : 312.000000000, - "tiers" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null - } ], - "defaultQuantity" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "productDiscountApplyDetails" : [ ], - "endDateCondition" : "Fixed_Period", - "upToPeriods" : 1, - "upToPeriodsType" : "Billing_Periods", - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "specificListPriceBase" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriod" : "Annual", - "billingPeriodAlignment" : "AlignToCharge", - "specificBillingPeriod" : null, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedIncludedUnitPrice" : null, - "usageRecordRatingOption" : null, - "priceChangeOption" : null, - "priceIncreasePercentage" : null, - "useTenantDefaultForPriceChange" : true, - "taxable" : true, - "taxCode" : "Guardian Weekly", - "taxMode" : "TaxInclusive", - "ProductCode__c" : "P1200", - "ProductType__c" : "Guardian Weekly", - "triggerEvent" : "CustomerAcceptance", - "description" : "", - "revRecCode" : null, - "revRecTriggerCondition" : null, - "revenueRecognitionRuleName" : "Recognize daily over time", - "useDiscountSpecificAccountingCode" : null, - "financeInformation" : { - "deferredRevenueAccountingCode" : "Deferred Revenue - Guardian Weekly", - "deferredRevenueAccountingCodeType" : "DeferredRevenue", - "recognizedRevenueAccountingCode" : "Guardian Weekly", - "recognizedRevenueAccountingCodeType" : "SalesRevenue", - "accountsReceivableAccountingCode" : "Accounts Receivable", - "accountsReceivableAccountingCodeType" : "AccountsReceivable" - }, - "isStackedDiscount" : false, - "productRatePlanChargeNumber" : null - } ], - "productRatePlanNumber" : null - } ], - "productFeatures" : [ ] - } ], - "nextPage" : "/v1/catalog/products?page=2&pageSize=10", - "success" : true -} \ No newline at end of file diff --git a/lambda/src/test/resources/Migrations/SupporterPlus2023V1V2/z-monthly-extra-case-1/invoice-preview.json b/lambda/src/test/resources/Migrations/SupporterPlus2023V1V2/z-monthly-extra-case-1/invoice-preview.json deleted file mode 100644 index f612c930..00000000 --- a/lambda/src/test/resources/Migrations/SupporterPlus2023V1V2/z-monthly-extra-case-1/invoice-preview.json +++ /dev/null @@ -1,245 +0,0 @@ -{ - "accountId" : "ACCOUNT-ID", - "invoiceItems" : [ { - "id" : "0f16c16ae1604b27aac0af9c717175ce", - "subscriptionName" : "SUBSCRIPTION-NUMBER", - "subscriptionId" : "8a128b7f8962de6b018972a98db665b6", - "subscriptionNumber" : "SUBSCRIPTION-NUMBER", - "serviceStartDate" : "2023-08-08", - "serviceEndDate" : "2023-09-07", - "chargeAmount" : 10.000000000, - "chargeDescription" : "", - "chargeName" : "Supporter Plus Monthly Charge", - "chargeNumber" : "C-04311965", - "chargeId" : "8a12886a87fb2fba0187fc06f22577d8", - "productName" : "Supporter Plus", - "quantity" : 1, - "taxAmount" : 0.000000000, - "unitOfMeasure" : "", - "chargeDate" : "2023-07-20 10:37:42", - "chargeType" : "Recurring", - "processingType" : "Charge", - "appliedToItemId" : null - }, { - "id" : "c2b0160be68b439fac53a40eda056480", - "subscriptionName" : "SUBSCRIPTION-NUMBER", - "subscriptionId" : "8a128b7f8962de6b018972a98db665b6", - "subscriptionNumber" : "SUBSCRIPTION-NUMBER", - "serviceStartDate" : "2023-09-08", - "serviceEndDate" : "2023-10-07", - "chargeAmount" : 10.000000000, - "chargeDescription" : "", - "chargeName" : "Supporter Plus Monthly Charge", - "chargeNumber" : "C-04311965", - "chargeId" : "8a12886a87fb2fba0187fc06f22577d8", - "productName" : "Supporter Plus", - "quantity" : 1, - "taxAmount" : 0.000000000, - "unitOfMeasure" : "", - "chargeDate" : "2023-07-20 10:37:42", - "chargeType" : "Recurring", - "processingType" : "Charge", - "appliedToItemId" : null - }, { - "id" : "ee4cffcc4c6e417aa2f46b63fe977378", - "subscriptionName" : "SUBSCRIPTION-NUMBER", - "subscriptionId" : "8a128b7f8962de6b018972a98db665b6", - "subscriptionNumber" : "SUBSCRIPTION-NUMBER", - "serviceStartDate" : "2023-10-08", - "serviceEndDate" : "2023-11-07", - "chargeAmount" : 10.000000000, - "chargeDescription" : "", - "chargeName" : "Supporter Plus Monthly Charge", - "chargeNumber" : "C-04311965", - "chargeId" : "8a12886a87fb2fba0187fc06f22577d8", - "productName" : "Supporter Plus", - "quantity" : 1, - "taxAmount" : 0.000000000, - "unitOfMeasure" : "", - "chargeDate" : "2023-07-20 10:37:42", - "chargeType" : "Recurring", - "processingType" : "Charge", - "appliedToItemId" : null - }, { - "id" : "23d1bafdfbba40cab6ca7b2a808308e5", - "subscriptionName" : "SUBSCRIPTION-NUMBER", - "subscriptionId" : "8a128b7f8962de6b018972a98db665b6", - "subscriptionNumber" : "SUBSCRIPTION-NUMBER", - "serviceStartDate" : "2023-11-08", - "serviceEndDate" : "2023-12-07", - "chargeAmount" : 10.000000000, - "chargeDescription" : "", - "chargeName" : "Supporter Plus Monthly Charge", - "chargeNumber" : "C-04311965", - "chargeId" : "8a12886a87fb2fba0187fc06f22577d8", - "productName" : "Supporter Plus", - "quantity" : 1, - "taxAmount" : 0.000000000, - "unitOfMeasure" : "", - "chargeDate" : "2023-07-20 10:37:42", - "chargeType" : "Recurring", - "processingType" : "Charge", - "appliedToItemId" : null - }, { - "id" : "d0629a14eb8543bebc02daaccb1af7d9", - "subscriptionName" : "SUBSCRIPTION-NUMBER", - "subscriptionId" : "8a128b7f8962de6b018972a98db665b6", - "subscriptionNumber" : "SUBSCRIPTION-NUMBER", - "serviceStartDate" : "2023-12-08", - "serviceEndDate" : "2024-01-07", - "chargeAmount" : 10.000000000, - "chargeDescription" : "", - "chargeName" : "Supporter Plus Monthly Charge", - "chargeNumber" : "C-04311965", - "chargeId" : "8a12886a87fb2fba0187fc06f22577d8", - "productName" : "Supporter Plus", - "quantity" : 1, - "taxAmount" : 0.000000000, - "unitOfMeasure" : "", - "chargeDate" : "2023-07-20 10:37:42", - "chargeType" : "Recurring", - "processingType" : "Charge", - "appliedToItemId" : null - }, { - "id" : "73cf0bae2905488aa3ea9043ccabe14a", - "subscriptionName" : "SUBSCRIPTION-NUMBER", - "subscriptionId" : "8a128b7f8962de6b018972a98db665b6", - "subscriptionNumber" : "SUBSCRIPTION-NUMBER", - "serviceStartDate" : "2024-01-08", - "serviceEndDate" : "2024-02-07", - "chargeAmount" : 10.000000000, - "chargeDescription" : "", - "chargeName" : "Supporter Plus Monthly Charge", - "chargeNumber" : "C-04311965", - "chargeId" : "8a12886a87fb2fba0187fc06f22577d8", - "productName" : "Supporter Plus", - "quantity" : 1, - "taxAmount" : 0.000000000, - "unitOfMeasure" : "", - "chargeDate" : "2023-07-20 10:37:42", - "chargeType" : "Recurring", - "processingType" : "Charge", - "appliedToItemId" : null - }, { - "id" : "4f3f6a5f732448929835a0119d380f8a", - "subscriptionName" : "SUBSCRIPTION-NUMBER", - "subscriptionId" : "8a128b7f8962de6b018972a98db665b6", - "subscriptionNumber" : "SUBSCRIPTION-NUMBER", - "serviceStartDate" : "2024-02-08", - "serviceEndDate" : "2024-03-07", - "chargeAmount" : 10.000000000, - "chargeDescription" : "", - "chargeName" : "Supporter Plus Monthly Charge", - "chargeNumber" : "C-04311965", - "chargeId" : "8a12886a87fb2fba0187fc06f22577d8", - "productName" : "Supporter Plus", - "quantity" : 1, - "taxAmount" : 0.000000000, - "unitOfMeasure" : "", - "chargeDate" : "2023-07-20 10:37:42", - "chargeType" : "Recurring", - "processingType" : "Charge", - "appliedToItemId" : null - }, { - "id" : "e2913b6fd93145478b85f5047d3550f3", - "subscriptionName" : "SUBSCRIPTION-NUMBER", - "subscriptionId" : "8a128b7f8962de6b018972a98db665b6", - "subscriptionNumber" : "SUBSCRIPTION-NUMBER", - "serviceStartDate" : "2024-03-08", - "serviceEndDate" : "2024-04-07", - "chargeAmount" : 10.000000000, - "chargeDescription" : "", - "chargeName" : "Supporter Plus Monthly Charge", - "chargeNumber" : "C-04311965", - "chargeId" : "8a12886a87fb2fba0187fc06f22577d8", - "productName" : "Supporter Plus", - "quantity" : 1, - "taxAmount" : 0.000000000, - "unitOfMeasure" : "", - "chargeDate" : "2023-07-20 10:37:42", - "chargeType" : "Recurring", - "processingType" : "Charge", - "appliedToItemId" : null - }, { - "id" : "1468b03cf5434bb09bdd8deb8cb8a5a6", - "subscriptionName" : "SUBSCRIPTION-NUMBER", - "subscriptionId" : "8a128b7f8962de6b018972a98db665b6", - "subscriptionNumber" : "SUBSCRIPTION-NUMBER", - "serviceStartDate" : "2024-04-08", - "serviceEndDate" : "2024-05-07", - "chargeAmount" : 10.000000000, - "chargeDescription" : "", - "chargeName" : "Supporter Plus Monthly Charge", - "chargeNumber" : "C-04311965", - "chargeId" : "8a12886a87fb2fba0187fc06f22577d8", - "productName" : "Supporter Plus", - "quantity" : 1, - "taxAmount" : 0.000000000, - "unitOfMeasure" : "", - "chargeDate" : "2023-07-20 10:37:42", - "chargeType" : "Recurring", - "processingType" : "Charge", - "appliedToItemId" : null - }, { - "id" : "204cd4a542374e198986b774c689af6d", - "subscriptionName" : "SUBSCRIPTION-NUMBER", - "subscriptionId" : "8a128b7f8962de6b018972a98db665b6", - "subscriptionNumber" : "SUBSCRIPTION-NUMBER", - "serviceStartDate" : "2024-05-08", - "serviceEndDate" : "2024-06-07", - "chargeAmount" : 10.000000000, - "chargeDescription" : "", - "chargeName" : "Supporter Plus Monthly Charge", - "chargeNumber" : "C-04311965", - "chargeId" : "8a12886a87fb2fba0187fc06f22577d8", - "productName" : "Supporter Plus", - "quantity" : 1, - "taxAmount" : 0.000000000, - "unitOfMeasure" : "", - "chargeDate" : "2023-07-20 10:37:42", - "chargeType" : "Recurring", - "processingType" : "Charge", - "appliedToItemId" : null - }, { - "id" : "521f5296f67d44dfa2dc1e8f186fbb69", - "subscriptionName" : "SUBSCRIPTION-NUMBER", - "subscriptionId" : "8a128b7f8962de6b018972a98db665b6", - "subscriptionNumber" : "SUBSCRIPTION-NUMBER", - "serviceStartDate" : "2024-06-08", - "serviceEndDate" : "2024-07-07", - "chargeAmount" : 10.000000000, - "chargeDescription" : "", - "chargeName" : "Supporter Plus Monthly Charge", - "chargeNumber" : "C-04311965", - "chargeId" : "8a12886a87fb2fba0187fc06f22577d8", - "productName" : "Supporter Plus", - "quantity" : 1, - "taxAmount" : 0.000000000, - "unitOfMeasure" : "", - "chargeDate" : "2023-07-20 10:37:42", - "chargeType" : "Recurring", - "processingType" : "Charge", - "appliedToItemId" : null - }, { - "id" : "084460ec30774362b9cb4f02eb97821d", - "subscriptionName" : "SUBSCRIPTION-NUMBER", - "subscriptionId" : "8a128b7f8962de6b018972a98db665b6", - "subscriptionNumber" : "SUBSCRIPTION-NUMBER", - "serviceStartDate" : "2024-07-08", - "serviceEndDate" : "2024-08-07", - "chargeAmount" : 10.000000000, - "chargeDescription" : "", - "chargeName" : "Supporter Plus Monthly Charge", - "chargeNumber" : "C-04311965", - "chargeId" : "8a12886a87fb2fba0187fc06f22577d8", - "productName" : "Supporter Plus", - "quantity" : 1, - "taxAmount" : 0.000000000, - "unitOfMeasure" : "", - "chargeDate" : "2023-07-20 10:37:42", - "chargeType" : "Recurring", - "processingType" : "Charge", - "appliedToItemId" : null - } ], - "success" : true -} \ No newline at end of file diff --git a/lambda/src/test/resources/Migrations/SupporterPlus2023V1V2/z-monthly-extra-case-1/subscription.json b/lambda/src/test/resources/Migrations/SupporterPlus2023V1V2/z-monthly-extra-case-1/subscription.json deleted file mode 100644 index 49bf6eb1..00000000 --- a/lambda/src/test/resources/Migrations/SupporterPlus2023V1V2/z-monthly-extra-case-1/subscription.json +++ /dev/null @@ -1,240 +0,0 @@ -{ - "success" : true, - "id" : "SUBSCRIPTION-ID", - "accountId" : "ACCOUNT-ID", - "accountNumber" : "ACCOUNT-NUMBER", - "accountName" : "0010J00001qxpcAQAQ", - "invoiceOwnerAccountId" : "ACCOUNT-ID", - "invoiceOwnerAccountNumber" : "ACCOUNT-NUMBER", - "invoiceOwnerAccountName" : "0010J00001qxpcAQAQ", - "subscriptionNumber" : "SUBSCRIPTION-NUMBER", - "version" : 8, - "revision" : "8.0", - "termType" : "TERMED", - "invoiceSeparately" : false, - "contractEffectiveDate" : "2018-02-20", - "serviceActivationDate" : "2018-02-20", - "customerAcceptanceDate" : "2018-02-20", - "subscriptionStartDate" : "2018-02-20", - "subscriptionEndDate" : "2024-02-20", - "lastBookingDate" : "2023-05-08", - "termStartDate" : "2023-02-20", - "termEndDate" : "2024-02-20", - "initialTerm" : 12, - "initialTermPeriodType" : "Month", - "currentTerm" : 12, - "currentTermPeriodType" : "Month", - "autoRenew" : true, - "renewalSetting" : "RENEW_WITH_SPECIFIC_TERM", - "renewalTerm" : 12, - "renewalTermPeriodType" : "Month", - "contractedMrr" : 10.00, - "totalContractedValue" : 407.14, - "notes" : null, - "status" : "Active", - "TrialPeriodPrice__c" : null, - "CanadaHandDelivery__c" : null, - "QuoteNumber__QT" : null, - "GifteeIdentityId__c" : null, - "OpportunityName__QT" : null, - "GiftNotificationEmailDate__c" : null, - "Gift_Subscription__c" : "No", - "TrialPeriodDays__c" : null, - "CreatedRequestId__c" : null, - "AcquisitionSource__c" : null, - "CreatedByCSR__c" : null, - "CASSubscriberID__c" : null, - "LastPriceChangeDate__c" : null, - "InitialPromotionCode__c" : null, - "CpqBundleJsonId__QT" : null, - "RedemptionCode__c" : null, - "QuoteType__QT" : null, - "GiftRedemptionDate__c" : null, - "QuoteBusinessType__QT" : null, - "SupplierCode__c" : null, - "legacy_cat__c" : null, - "AcquisitionCase__c" : null, - "ReaderType__c" : null, - "ActivationDate__c" : null, - "UserCancellationReason__c" : null, - "OpportunityCloseDate__QT" : null, - "IPaddress__c" : null, - "IPCountry__c" : null, - "PromotionCode__c" : null, - "OriginalSubscriptionStartDate__c" : null, - "LegacyContractStartDate__c" : null, - "CancellationReason__c" : null, - "billToContact" : null, - "paymentTerm" : null, - "invoiceTemplateId" : null, - "invoiceTemplateName" : null, - "sequenceSetId" : null, - "sequenceSetName" : null, - "soldToContact" : null, - "isLatestVersion" : true, - "cancelReason" : null, - "ratePlans" : [ { - "id" : "8a12886a87fb2fba0187fc06f36577ee", - "lastChangeType" : "Remove", - "productId" : "2c92a0fe5aacfabe015ad24bf6e15ff6", - "productName" : "Contributor", - "productSku" : "ABC-00000028", - "productRatePlanId" : "2c92a0fc5aacfadd015ad24db4ff5e97", - "productRatePlanNumber" : null, - "ratePlanName" : "Monthly Contribution", - "subscriptionProductFeatures" : [ ], - "externallyManagedPlanId" : null, - "subscriptionRatePlanNumber" : null, - "ratePlanCharges" : [ { - "id" : "8a12886a87fb2fba0187fc06f36577ef", - "originalChargeId" : "2c92a0fd61b08db60161b28c0eb248cf", - "productRatePlanChargeId" : "2c92a0fc5aacfadd015ad250bf2c6d38", - "number" : "C-01249312", - "name" : "Monthly Contribution", - "productRatePlanChargeNumber" : null, - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "version" : 7, - "pricingSummary" : "GBP5", - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "currency" : "GBP", - "price" : 5.000000000, - "tiers" : null, - "chargeModelConfiguration" : null, - "inputArgumentId" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "discountApplyDetails" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "billingPeriod" : "Month", - "specificBillingPeriod" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriodAlignment" : "AlignToCharge", - "quantity" : 1.000000000, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedUnitsCreditRates" : null, - "usageRecordRatingOption" : null, - "segment" : 1, - "effectiveStartDate" : "2018-02-20", - "effectiveEndDate" : "2023-05-08", - "processedThroughDate" : "2023-05-08", - "chargedThroughDate" : "2023-05-08", - "done" : true, - "triggerDate" : null, - "triggerEvent" : "CustomerAcceptance", - "endDateCondition" : "Subscription_End", - "upToPeriodsType" : null, - "upToPeriods" : null, - "specificEndDate" : null, - "mrr" : 5.000000000, - "dmrc" : 0.000000000, - "tcv" : 313.000000000, - "dtcv" : -47.000000000, - "originalOrderDate" : "2018-02-20", - "amendedByOrderOn" : "2023-05-08", - "description" : "", - "HolidayStart__c" : null, - "HolidayEnd__c" : null, - "ForceSync__c" : null - } ] - }, { - "id" : "8a12886a87fb2fba0187fc06f39d77f7", - "lastChangeType" : "Add", - "productId" : "8a12865b8219d9b4018221061563643f", - "productName" : "Supporter Plus", - "productSku" : "ABC-00000032", - "productRatePlanId" : "8a12865b8219d9b401822106192b64dc", - "productRatePlanNumber" : null, - "ratePlanName" : "Supporter Plus Monthly", - "subscriptionProductFeatures" : [ ], - "externallyManagedPlanId" : null, - "subscriptionRatePlanNumber" : null, - "ratePlanCharges" : [ { - "id" : "8a12886a87fb2fba0187fc06f39f77f9", - "originalChargeId" : "8a12886a87fb2fba0187fc06f22577d8", - "productRatePlanChargeId" : "8a12865b8219d9b401822106194e64e3", - "number" : "C-04311965", - "name" : "Supporter Plus Monthly Charge", - "productRatePlanChargeNumber" : null, - "type" : "Recurring", - "model" : "FlatFee", - "uom" : null, - "version" : 1, - "pricingSummary" : "GBP10", - "priceChangeOption" : "NoChange", - "priceIncreasePercentage" : null, - "currency" : "GBP", - "price" : 10.000000000, - "tiers" : null, - "chargeModelConfiguration" : null, - "inputArgumentId" : null, - "includedUnits" : null, - "overagePrice" : null, - "discountPercentage" : null, - "discountAmount" : null, - "applyDiscountTo" : null, - "discountLevel" : null, - "discountClass" : null, - "discountApplyDetails" : null, - "billingDay" : "ChargeTriggerDay", - "listPriceBase" : "Per_Billing_Period", - "billingPeriod" : "Month", - "specificBillingPeriod" : null, - "billingTiming" : "IN_ADVANCE", - "ratingGroup" : null, - "billingPeriodAlignment" : "AlignToCharge", - "quantity" : 1.000000000, - "smoothingModel" : null, - "numberOfPeriods" : null, - "overageCalculationOption" : null, - "overageUnusedUnitsCreditOption" : null, - "unusedUnitsCreditRates" : null, - "usageRecordRatingOption" : null, - "segment" : 1, - "effectiveStartDate" : "2023-05-08", - "effectiveEndDate" : "2024-02-20", - "processedThroughDate" : "2023-07-08", - "chargedThroughDate" : "2023-08-08", - "done" : false, - "triggerDate" : null, - "triggerEvent" : "CustomerAcceptance", - "endDateCondition" : "Subscription_End", - "upToPeriodsType" : null, - "upToPeriods" : null, - "specificEndDate" : null, - "mrr" : 10.000000000, - "dmrc" : 10.000000000, - "tcv" : 94.137931030, - "dtcv" : 94.137931030, - "originalOrderDate" : "2023-05-08", - "amendedByOrderOn" : null, - "description" : "", - "HolidayStart__c" : null, - "HolidayEnd__c" : null, - "ForceSync__c" : null - } ] - } ], - "orderNumber" : "O-00614917", - "externallyManagedBy" : null, - "statusHistory" : [ { - "startDate" : "2018-02-20", - "endDate" : "2024-02-20", - "status" : "Active" - }, { - "startDate" : "2024-02-20", - "endDate" : null, - "status" : "OutOfTerm" - } ] -} \ No newline at end of file